Class IntArray
- java.lang.Object
-
- com.alibaba.graphscope.utils.array.impl.IntArray
-
- All Implemented Interfaces:
PrimitiveArray<Integer>
,Serializable
public class IntArray extends Object implements PrimitiveArray<Integer>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntArray(int len)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
get(int index)
void
set(int index, Integer 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 Integer get(int index)
- Specified by:
get
in interfacePrimitiveArray<Integer>
-
set
public void set(int index, Integer value)
- Specified by:
set
in interfacePrimitiveArray<Integer>
-
size
public int size()
- Specified by:
size
in interfacePrimitiveArray<Integer>
-
-