Package party.iroiro.luajava.luaj
Class LuaJConsts
- java.lang.Object
-
- party.iroiro.luajava.luaj.LuaJConsts
-
public abstract class LuaJConsts extends java.lang.Object
Generated withgenerate-consts.awk
:awk -f scripts/generate-consts.awk \ .../lua.h \ .../lauxlib.h \ > .../party/iroiro/jua/...Consts.java
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
LUA_COPYRIGHT
static int
LUA_ENVIRONINDEX
Generated from lua51/jni/lua51/src/lua.h (line 37):static int
LUA_ERRERR
Generated from lua51/jni/lua51/src/lua.h (line 47):static int
LUA_ERRMEM
Generated from lua51/jni/lua51/src/lua.h (line 46):static int
LUA_ERRRUN
Generated from lua51/jni/lua51/src/lua.h (line 44):static int
LUA_ERRSYNTAX
Generated from lua51/jni/lua51/src/lua.h (line 45):static int
LUA_GLOBALSINDEX
Generated from lua51/jni/lua51/src/lua.h (line 38):static int
LUA_MINSTACK
Generated from lua51/jni/lua51/src/lua.h (line 87):static int
LUA_MULTRET
static int
LUA_NOREF
Generated from lua51/jni/lua51/src/lauxlib.h (line 547):static int
LUA_REFNIL
Generated from lua51/jni/lua51/src/lauxlib.h (line 548):static int
LUA_REGISTRYINDEX
Generated from lua51/jni/lua51/src/lua.h (line 36):static java.lang.String
LUA_RELEASE
static int
LUA_TBOOLEAN
static int
LUA_TFUNCTION
static int
LUA_TLIGHTUSERDATA
static int
LUA_TNIL
static int
LUA_TNONE
static int
LUA_TNUMBER
static int
LUA_TSTRING
static int
LUA_TTABLE
static int
LUA_TTHREAD
static int
LUA_TUSERDATA
static java.lang.String
LUA_VERSION
static int
LUA_VERSION_NUM
Generated from lua51/jni/lua51/src/lua.h (line 21):static int
LUA_YIELD
Generated from lua51/jni/lua51/src/lua.h (line 43):
-
Constructor Summary
Constructors Constructor Description LuaJConsts()
-
-
-
Field Detail
-
LUA_VERSION
public static final java.lang.String LUA_VERSION
- See Also:
- Constant Field Values
-
LUA_RELEASE
public static final java.lang.String LUA_RELEASE
- See Also:
- Constant Field Values
-
LUA_VERSION_NUM
public static final int LUA_VERSION_NUM
Generated from lua51/jni/lua51/src/lua.h (line 21):#define LUA_VERSION_NUM 501
- See Also:
- Constant Field Values
-
LUA_COPYRIGHT
public static final java.lang.String LUA_COPYRIGHT
- See Also:
- Constant Field Values
-
LUA_MULTRET
public static final int LUA_MULTRET
- See Also:
- Constant Field Values
-
LUA_REGISTRYINDEX
public static final int LUA_REGISTRYINDEX
Generated from lua51/jni/lua51/src/lua.h (line 36):#define LUA_REGISTRYINDEX (-10000)
- See Also:
- Constant Field Values
-
LUA_ENVIRONINDEX
public static final int LUA_ENVIRONINDEX
Generated from lua51/jni/lua51/src/lua.h (line 37):#define LUA_ENVIRONINDEX (-10001)
- See Also:
- Constant Field Values
-
LUA_GLOBALSINDEX
public static final int LUA_GLOBALSINDEX
Generated from lua51/jni/lua51/src/lua.h (line 38):#define LUA_GLOBALSINDEX (-10002)
- See Also:
- Constant Field Values
-
LUA_YIELD
public static final int LUA_YIELD
Generated from lua51/jni/lua51/src/lua.h (line 43):#define LUA_YIELD 1
- See Also:
- Constant Field Values
-
LUA_ERRRUN
public static final int LUA_ERRRUN
Generated from lua51/jni/lua51/src/lua.h (line 44):#define LUA_ERRRUN 2
- See Also:
- Constant Field Values
-
LUA_ERRSYNTAX
public static final int LUA_ERRSYNTAX
Generated from lua51/jni/lua51/src/lua.h (line 45):#define LUA_ERRSYNTAX 3
- See Also:
- Constant Field Values
-
LUA_ERRMEM
public static final int LUA_ERRMEM
Generated from lua51/jni/lua51/src/lua.h (line 46):#define LUA_ERRMEM 4
- See Also:
- Constant Field Values
-
LUA_ERRERR
public static final int LUA_ERRERR
Generated from lua51/jni/lua51/src/lua.h (line 47):#define LUA_ERRERR 5
- See Also:
- Constant Field Values
-
LUA_TNONE
public static final int LUA_TNONE
- See Also:
- Constant Field Values
-
LUA_TNIL
public static final int LUA_TNIL
- See Also:
- Constant Field Values
-
LUA_TBOOLEAN
public static final int LUA_TBOOLEAN
- See Also:
- Constant Field Values
-
LUA_TLIGHTUSERDATA
public static final int LUA_TLIGHTUSERDATA
- See Also:
- Constant Field Values
-
LUA_TNUMBER
public static final int LUA_TNUMBER
- See Also:
- Constant Field Values
-
LUA_TSTRING
public static final int LUA_TSTRING
- See Also:
- Constant Field Values
-
LUA_TTABLE
public static final int LUA_TTABLE
- See Also:
- Constant Field Values
-
LUA_TFUNCTION
public static final int LUA_TFUNCTION
- See Also:
- Constant Field Values
-
LUA_TUSERDATA
public static final int LUA_TUSERDATA
- See Also:
- Constant Field Values
-
LUA_TTHREAD
public static final int LUA_TTHREAD
- See Also:
- Constant Field Values
-
LUA_MINSTACK
public static final int LUA_MINSTACK
Generated from lua51/jni/lua51/src/lua.h (line 87):#define LUA_MINSTACK 20
- See Also:
- Constant Field Values
-
LUA_NOREF
public static final int LUA_NOREF
Generated from lua51/jni/lua51/src/lauxlib.h (line 547):#define LUA_NOREF (-2)
- See Also:
- Constant Field Values
-
LUA_REFNIL
public static final int LUA_REFNIL
Generated from lua51/jni/lua51/src/lauxlib.h (line 548):#define LUA_REFNIL (-1)
- See Also:
- Constant Field Values
-
-