Package io.hstream
Class HArray
- java.lang.Object
-
- io.hstream.HArray
-
public class HArray extends Object
A data structure like array
-
-
Constructor Summary
Constructors Constructor Description HArray(com.google.protobuf.ListValue delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetBoolean(int index)com.google.protobuf.ListValuegetDelegate()doublegetDouble(int index)HArraygetHArray(int index)HRecordgetHRecord(int index)intgetInt(int index)longgetLong(int index)StringgetString(int index)static HArrayBuildernewBuilder()intsize()
-
-
-
Method Detail
-
newBuilder
public static HArrayBuilder newBuilder()
-
getDelegate
public com.google.protobuf.ListValue getDelegate()
-
size
public int size()
-
getBoolean
public boolean getBoolean(int index)
-
getInt
public int getInt(int index)
-
getDouble
public double getDouble(int index)
-
getLong
public long getLong(int index)
-
getString
public String getString(int index)
-
getHArray
public HArray getHArray(int index)
-
getHRecord
public HRecord getHRecord(int index)
-
-