Uses of Class
com.prineside.luaj.LuaString
Packages that use LuaString
Package
Description
Lua VM, only works in an interpreted mode, which allows it to support iOS.
- 
Uses of LuaString in com.prineside.luaj
Fields in com.prineside.luaj declared as LuaStringModifier and TypeFieldDescriptionstatic final LuaStringLuaValue.ADDLuaString constant with value "__add" for use as metatagstatic final LuaStringLuaValue.CALLLuaString constant with value "__call" for use as metatagstatic final LuaStringLuaValue.CONCATLuaString constant with value "__concat" for use as metatagstatic final LuaStringLuaValue.DIVLuaString constant with value "__div" for use as metatagstatic final LuaStringLuaValue.EMPTYSTRINGLuaString constant with value ""static LuaStringLuaValue.ENVThe variable name of the environment.static final LuaStringLuaValue.EQLuaString constant with value "__eq" for use as metatagstatic final LuaStringLuaValue.INDEXLuaString constant with value "__index" for use as metatagstatic final LuaStringLuaValue.IPAIRSLuaString constant with value "__ipairs" for use as metatagstatic final LuaStringLuaValue.LELuaString constant with value "__le" for use as metatagstatic final LuaStringLuaValue.LENLuaString constant with value "__len" for use as metatagstatic final LuaStringLuaValue.LTLuaString constant with value "__lt" for use as metatagstatic final LuaStringLuaValue.METATABLELuaString constant with value "__metatable" for use as metatagstatic final LuaStringLuaValue.MODLuaString constant with value "__mod" for use as metatagstatic final LuaStringLuaValue.MODELuaString constant with value "__mode" for use as metatagstatic final LuaStringLuaValue.MULLuaString constant with value "__mul" for use as metatagUpvaldesc.namestatic final LuaStringLuaValue.NEWINDEXLuaString constant with value "__newindex" for use as metatagstatic final LuaStringLuaValue.PAIRSLuaString constant with value "__ipairs" for use as metatagstatic final LuaStringLuaValue.POWLuaString constant with value "__pow" for use as metatagfinal LuaStringFPrototype.sourcePrototype.sourcestatic final LuaStringLuaValue.SUBLuaString constant with value "__sub" for use as metatagstatic final LuaStringLuaValue.TOSTRINGLuaString constant with value "__tostring" for use as metatagstatic final LuaStringLuaValue.UNMLuaString constant with value "__unm" for use as metatagLocVars.varnameThe local variable nameMethods in com.prineside.luaj that return LuaStringModifier and TypeMethodDescriptionLuaNumber.checkstring()LuaString.checkstring()LuaValue.checkstring()Check that this is a lua string, or throwLuaErrorif it is not.Varargs.checkstring(int i) Return argument i as a LuaString if a string or number, or throw an error if any other typeFPrototype.getlocalname(int number, int pc) Get the name of a local variable.Prototype.getlocalname(int number, int pc) Get the name of a local variable.final LuaStringCheck that optional argument is a string or number and return asLuaStringReturn argument i as a LuaString if a string or number,defvalif nil, or throw a LuaError if any other typefinal LuaStringLuaFunction.strvalue()LuaNumber.strvalue()LuaString.strvalue()LuaValue.strvalue()LuaString.substring(int beginIndex, int endIndex) Take a substring using Java zero-based indexes for begin and end or range.final LuaStringBuffer.tostring()Convert the buffer to aLuaStringstatic LuaStringLuaString.valueOf(byte[] bytes) Construct aLuaStringfor all the bytes in a byte array.static LuaStringLuaString.valueOf(byte[] bytes, int off, int len) Construct aLuaStringfor a portion of a byte array.static LuaStringLuaString.valueOf(char[] bytes) Construct aLuaStringusing the supplied characters as byte values.static LuaStringLuaString.valueOf(char[] bytes, int off, int len) Construct aLuaStringusing the supplied characters as byte values.static LuaStringGet aLuaStringinstance whose bytes match the supplied Java String using the UTF8 encoding.static LuaStringLuaValue.valueOf(byte[] bytes) Convert bytes in an array to aLuaValue.static LuaStringLuaValue.valueOf(byte[] bytes, int off, int len) Convert bytes in an array to aLuaValue.static LuaStringConvert java string to aLuaValue.static LuaStringLuaString.valueUsing(byte[] bytes) Construct aLuaStringfor all the bytes in a byte array, possibly using the supplied array as the backing store.static LuaStringLuaString.valueUsing(byte[] bytes, int off, int len) Construct aLuaStringaround, possibly using the the supplied byte array as the backing store.Methods in com.prineside.luaj with parameters of type LuaStringModifier and TypeMethodDescriptionfinal BufferAppend aLuaStringto the buffer.final LuaValueConcatenate the contents of a table efficiently, usingBufferConcatenate this buffer onto aLuaStringReverse-concatenation: concatenate this value onto another value known to be aLuaStringand return the result using rules of lua string concatenation including metatag processing.static booleanintFind the index of a string starting at a point in this stringintLuaString.indexOfAny(LuaString accept) Java version of strpbrk - find index of any byte that in an accept string.intLuaString.lastIndexOf(LuaString s) Find the last index of a string in this stringLoadState.loadFunction(LuaString p) Load a function prototype from the input streamfinal LuaStringCheck that optional argument is a string or number and return asLuaStringReturn argument i as a LuaString if a string or number,defvalif nil, or throw a LuaError if any other typeConcatenate bytes from aLuaStringonto the front of this bufferbooleanbooleanEquals: Perform direct equality comparison with aLuaStringvalue without metatag processing.intintintPerform string comparison with another value known to be aLuaStringusing string comparison based on byte values.voidMethod parameters in com.prineside.luaj with type arguments of type LuaStringModifier and TypeMethodDescriptionConstructors in com.prineside.luaj with parameters of type LuaStringModifierConstructorDescriptionFPrototype(LuaValue[] k, int[] code, FPrototype[] p, short[] lineinfo, LocVars[] locvars, Upvaldesc[] upvalues, LuaString source, short linedefined, short lastlinedefined, byte numparams, boolean is_vararg, byte maxstacksize) Construct a LocVars instance. - 
Uses of LuaString in com.prineside.luaj.ast
Methods in com.prineside.luaj.ast that return LuaStringModifier and TypeMethodDescriptionstatic LuaStringStr.charString(String image) static LuaStringStr.longString(String image) static LuaStringStr.quoteString(String image) Methods in com.prineside.luaj.ast with parameters of type LuaStringConstructors in com.prineside.luaj.ast with parameters of type LuaString - 
Uses of LuaString in com.prineside.luaj.lib.jse
Methods in com.prineside.luaj.lib.jse that return types with arguments of type LuaStringModifier and TypeMethodDescriptionJavaClass.getClassFields()JavaClass.getClassMethods()JavaClass.getInstanceFields()JavaClass.getInstanceMethods() - 
Uses of LuaString in com.prineside.luaj.parser
Methods in com.prineside.luaj.parser that return LuaString