Package tech.ytsaurus.ysontree
Interface YTreeListNode
-
- All Superinterfaces:
java.lang.Iterable<YTreeNode>,YTreeCompositeNode<YTreeNode>,YTreeNode
- All Known Implementing Classes:
YTreeListNodeImpl
public interface YTreeListNode extends YTreeCompositeNode<YTreeNode>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidadd(YTreeNode value)default voidaddAll(java.util.List<YTreeNode> values)YTreeNodeget(int index)default booleangetBool(int index)default byte[]getBytes(int index)default doublegetDouble(int index)default intgetInt(int index)default YTreeListNodegetList(int index)default longgetLong(int index)default YTreeMapNodegetMap(int index)default java.lang.StringgetString(int index)YTreeNoderemove(int index)YTreeNodeset(int index, YTreeNode value)default YTreeBuildertoListBuilder()-
Methods inherited from interface tech.ytsaurus.ysontree.YTreeCompositeNode
clear, isEmpty, size
-
Methods inherited from interface tech.ytsaurus.ysontree.YTreeNode
asList, asMap, attributeKeys, attributeValues, booleanNode, boolValue, bytesValue, cast, clearAttributes, containsAttribute, containsAttributes, doubleNode, doubleValue, entityNode, floatValue, getAttribute, getAttributeOrThrow, getAttributeOrThrow, getAttributes, integerNode, intValue, isBooleanNode, isDoubleNode, isEntityNode, isIntegerNode, isListNode, isMapNode, isStringNode, listNode, longValue, mapNode, putAttribute, removeAttribute, scalarNode, stringNode, stringValue, toBinary
-
-
-
-
Method Detail
-
get
YTreeNode get(int index)
-
remove
YTreeNode remove(int index)
-
add
void add(YTreeNode value)
-
addAll
default void addAll(java.util.List<YTreeNode> values)
-
getString
default java.lang.String getString(int index)
-
getBytes
default byte[] getBytes(int index)
-
getInt
default int getInt(int index)
-
getLong
default long getLong(int index)
-
getBool
default boolean getBool(int index)
-
getDouble
default double getDouble(int index)
-
getList
default YTreeListNode getList(int index)
-
getMap
default YTreeMapNode getMap(int index)
-
toListBuilder
default YTreeBuilder toListBuilder()
-
-