Package com.hk.lua

Enum LuaLibraryG2D

java.lang.Object
java.lang.Enum<LuaLibraryG2D>
com.hk.lua.LuaLibraryG2D
All Implemented Interfaces:
com.hk.func.BiConsumer<com.hk.lua.Environment,​com.hk.lua.LuaObject>, com.hk.lua.Lua.LuaMethod, Serializable, Comparable<LuaLibraryG2D>, java.lang.constant.Constable

public enum LuaLibraryG2D
extends Enum<LuaLibraryG2D>
implements com.hk.func.BiConsumer<com.hk.lua.Environment,​com.hk.lua.LuaObject>, com.hk.lua.Lua.LuaMethod
This library uses the G2D class to pipe all graphic commands to a retrieving object.
  • Method Details

    • values

      public static LuaLibraryG2D[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static LuaLibraryG2D valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • call

      public com.hk.lua.LuaObject call​(com.hk.lua.LuaInterpreter interp, com.hk.lua.LuaObject[] args)
      Specified by:
      call in interface com.hk.lua.Lua.LuaMethod
    • accept

      public void accept​(com.hk.lua.Environment env, com.hk.lua.LuaObject table)
      Specified by:
      accept in interface com.hk.func.BiConsumer<com.hk.lua.Environment,​com.hk.lua.LuaObject>