Package com.yandex.ydb.table.values
Class TupleValue
- java.lang.Object
-
- com.yandex.ydb.table.values.TupleValue
-
-
Field Summary
-
Fields inherited from interface com.yandex.ydb.table.values.Value
EMPTY_ARRAY
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TupleValueempty()booleanequals(Object o)Valueget(int index)TupleTypegetType()inthashCode()booleanisEmpty()static TupleValueof(Value item)static TupleValueof(Value a, Value b)static TupleValueof(Value a, Value b, Value c)static TupleValueof(Value a, Value b, Value c, Value d)static TupleValueof(Value a, Value b, Value c, Value d, Value e)static TupleValueof(List<Value> items)static TupleValueofCopy(Value... items)static TupleValueofOwn(Value... items)will not clone given arrayintsize()com.yandex.ydb.ValueProtos.ValuetoPb()StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.yandex.ydb.table.values.Value
asData, asDict, asList, asOptional, asStuct, asVariant, asVoid, makeOptional
-
-
-
-
Method Detail
-
empty
public static TupleValue empty()
-
of
public static TupleValue of(Value item)
-
of
public static TupleValue of(Value a, Value b)
-
of
public static TupleValue of(Value a, Value b, Value c)
-
of
public static TupleValue of(Value a, Value b, Value c, Value d)
-
of
public static TupleValue of(List<Value> items)
-
ofCopy
public static TupleValue ofCopy(Value... items)
-
ofOwn
public static TupleValue ofOwn(Value... items)
will not clone given array
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
get
public Value get(int index)
-
-