Package | Description |
---|---|
org.kitesdk.data |
Provides interfaces and classes for reading and writing datasets.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Dataset<E>
A logical representation of a set of data entities.
|
interface |
RandomAccessDataset<E>
A
Dataset that supports random access operations on entities. |
Modifier and Type | Method and Description |
---|---|
RefinableView<E> |
RefinableView.from(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is greater than or equal to the given value . |
RefinableView<E> |
RefinableView.fromAfter(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is greater than the given value . |
RefinableView<E> |
RefinableView.to(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is less than or equal to the given value . |
RefinableView<E> |
RefinableView.toBefore(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is less than the given value . |
RefinableView<E> |
RefinableView.with(String name,
Object... values)
Creates a sub-
View , restricted to entities whose name
field is equal to any of the given values . |
Copyright © 2013–2015. All rights reserved.