Interface Array<T>
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
CategoricalArray
,NullableArray
,NullableBoolArray
,NullableIntArray
public interface Array<T> extends AutoCloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
T
get(int i)
int
size()
-
-
-
Method Detail
-
get
T get(int i)
-
size
int size()
-
close
void close()
- Specified by:
close
in interfaceAutoCloseable
-
-