Class LuaBoolean


public final class LuaBoolean extends LuaValue
Extension of LuaValue which can hold a Java boolean as its value. These instance are not instantiated directly by clients. Instead, there are exactly twon instances of this class, LuaValue.TRUE and LuaValue.FALSE representing the lua values true and false. The function LuaValue.valueOf(boolean) will always return one of these two values. Any LuaValue can be converted to its equivalent boolean representation using LuaValue.toboolean()
See Also: