Package com.hk.lua

Enum LuaLibrarySocket

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

public enum LuaLibrarySocket
extends Enum<LuaLibrarySocket>
implements com.hk.func.BiConsumer<com.hk.lua.Environment,​com.hk.lua.LuaObject>, com.hk.lua.Lua.LuaMethod
This library exposes the Java Client/Server Socket API using a Lua library.
  • Method Details

    • values

      public static LuaLibrarySocket[] 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 LuaLibrarySocket 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>