Interface Dataframe.Column<K,T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
get(int i)
T
get(K key)
boolean
getBool(int i)
boolean
getBool(K key)
double
getDouble(int i)
double
getDouble(K key)
int
getInt(int i)
int
getInt(K key)
String
getName()
Class<?>
getType()
int
indexOf(T element)
int
size()
Set<T>
uniqueValues()
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
getName
String getName()
-
getType
Class<?> getType()
-
get
T get(int i) throws IndexOutOfBoundsException
- Throws:
IndexOutOfBoundsException
-
getBool
boolean getBool(int i) throws IndexOutOfBoundsException
- Throws:
IndexOutOfBoundsException
-
getInt
int getInt(int i) throws IndexOutOfBoundsException
- Throws:
IndexOutOfBoundsException
-
getDouble
double getDouble(int i) throws IndexOutOfBoundsException
- Throws:
IndexOutOfBoundsException
-
getBool
boolean getBool(K key)
-
getInt
int getInt(K key)
-
getDouble
double getDouble(K key)
-
size
int size()
-
indexOf
int indexOf(T element)
-
-