public static enum LuaState.Library extends Enum<LuaState.Library>
Enum Constant and Description |
---|
BASE
The base library, including the coroutine functions.
|
DEBUG
The debug library.
|
IO
The IO library.
|
JAVA
The Java library.
|
MATH
The math library.
|
OS
The OS library.
|
PACKAGE
The package library.
|
STRING
The string library.
|
TABLE
The table library.
|
Modifier and Type | Method and Description |
---|---|
static LuaState.Library |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LuaState.Library[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LuaState.Library BASE
public static final LuaState.Library TABLE
public static final LuaState.Library IO
public static final LuaState.Library OS
public static final LuaState.Library STRING
public static final LuaState.Library MATH
public static final LuaState.Library DEBUG
public static final LuaState.Library PACKAGE
public static final LuaState.Library JAVA
public static LuaState.Library[] values()
for (LuaState.Library c : LuaState.Library.values()) System.out.println(c);
public static LuaState.Library valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null