Package com.hk.lua

Enum LuaLibraryFileSystem

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

public enum LuaLibraryFileSystem
extends Enum<LuaLibraryFileSystem>
implements com.hk.func.BiConsumer<com.hk.lua.Environment,​com.hk.lua.LuaObject>, com.hk.lua.Lua.LuaMethod
This library allows the usage of Java Files, Paths, and Iterators to efficiently and effectively retrieve file and directory info.
  • Method Details

    • values

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