Lukkit
  • Home
  • Getting Started
    • Installing Lukkit
    • Your First Plugin
    • Packing and Publishing
  • Storage
    • The StorageObject
    • Example
  • Commands
    • Command Options
    • Command Event
    • Examples
  • Gui
    • Create a simple inv
    • Create an advanced inv
    • Run function if an inventory item has been clicked
  • Events
    • Examples
    • Event List
      • Block
      • Enchantment
      • Entity
      • Hanging
      • Inventory
      • Player
      • Server
      • Vehicle
      • Weather
      • World
  • Globals
    • Global Functions
    • Global Variables
      • Plugin
      • Logging
      • Utilities
  • Wrappers
  • Examples
    • Discord Webhooks (http)
    • Toggle Fly
    • Hello, world!
Powered by GitBook
On this page
  1. Globals
  2. Global Variables

Utilities

PreviousLoggingNextWrappers

Last updated 6 years ago

Represented by util.

  • util.getTableFromList(list: java.util.Collection | java.util.stream.Stream) : table

    Convert from a stream or collection in Java to a table in Lua.

  • util.getTableFromArray(array: array) : table

    Convert from a array in Java to a table in Lua.

  • util.getTableFromMap(map: java.util.Map) : table

    Convert from a map in Java to a table in Lua.

  • util.getTableLength(table: table) : int

    Returns the amount of keys available in a table.

  • util.runAsync(func: function, delay: int)

    Run an asynchronous function after a certain time in milliseconds.

  • util.runDelayed(func: function, delay: int)

    Run a synchronous function after a certain time in milliseconds.

  • util.getClass(class: string) : java.lang.Class

    Grab a class from Java using the package and name. (ie java.io.File)

  • util.getSkullMeta(item: org.bukkit.inventory.ItemStack) :

    Returns the SkullMeta from an ItemStack.

  • util.getBannerMeta(item: org.bukkit.inventory.ItemStack) :

    Returns the BennerMeta from an ItemStack.

  • util.parseItemStack(item: org.bukkit.inventory.ItemStack) :

    Convert the userdata from an ItemStack into a table.

SkullWrapper
BannerWrapper
ItemStackWrapper