Class LongArray
- java.lang.Object
-
- com.alibaba.graphscope.utils.array.impl.LongArray
-
- All Implemented Interfaces:
PrimitiveArray<Long>
,Serializable
public class LongArray extends Object implements PrimitiveArray<Long>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LongArray(int len)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
get(int index)
void
set(int index, Long value)
int
size()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.alibaba.graphscope.utils.array.PrimitiveArray
get, set
-
-
-
-
Method Detail
-
get
public Long get(int index)
- Specified by:
get
in interfacePrimitiveArray<Long>
-
set
public void set(int index, Long value)
- Specified by:
set
in interfacePrimitiveArray<Long>
-
size
public int size()
- Specified by:
size
in interfacePrimitiveArray<Long>
-
-