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 boolean
getBoolean(int index)
com.google.protobuf.ListValue
getDelegate()
double
getDouble(int index)
HArray
getHArray(int index)
HRecord
getHRecord(int index)
int
getInt(int index)
long
getLong(int index)
String
getString(int index)
static HArrayBuilder
newBuilder()
int
size()
-
-
-
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)
-
-