Package org.yecht
Class Node
- java.lang.Object
-
- org.yecht.Node
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Node
allocMap()
static Node
allocSeq()
static Node
allocStr()
void
mapAdd(Object key, Object value)
void
mapAssign(MapPart p, int idx, Object id)
long
mapCount()
void
mapEmpty()
Object
mapRead(MapPart p, int idx)
void
mapUpdate(Node map2)
static Node
newMap(Object key, Object value)
static Node
newSeq(Object value)
static Node
newStr(Pointer str, int len, ScalarStyle style)
void
replaceStr(Pointer str, int len, ScalarStyle style)
void
seqAdd(Object value)
void
seqAssign(int idx, Object id)
int
seqCount()
void
seqEmpty()
Object
seqRead(int idx)
void
strBlowAwayCommas()
Pointer
strRead()
String
toString()
-
-
-
Method Detail
-
replaceStr
public void replaceStr(Pointer str, int len, ScalarStyle style)
-
strBlowAwayCommas
public void strBlowAwayCommas()
-
strRead
public Pointer strRead()
-
mapEmpty
public void mapEmpty()
-
mapUpdate
public void mapUpdate(Node map2)
-
mapCount
public long mapCount()
-
seqEmpty
public void seqEmpty()
-
seqAdd
public void seqAdd(Object value)
-
seqCount
public int seqCount()
-
seqAssign
public void seqAssign(int idx, Object id)
-
seqRead
public Object seqRead(int idx)
-
allocMap
public static Node allocMap()
-
allocSeq
public static Node allocSeq()
-
allocStr
public static Node allocStr()
-
newStr
public static Node newStr(Pointer str, int len, ScalarStyle style)
-
-