| Package | Description |
|---|---|
| org.kitesdk.data |
Provides interfaces and classes for reading and writing datasets.
|
| org.kitesdk.data.spi |
Provides a service provider interface for implementors of Kite Data APIs.
|
| 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. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PartitionedDataset<E> |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDataset<E>
A common Dataset base class to simplify implementations.
|
class |
AbstractRefinableView<E>
A common View base class to simplify implementations of Views created from ranges.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract RefinableView<E> |
AbstractDataset.asRefinableView() |
RefinableView<E> |
AbstractDataset.from(String name,
Comparable value) |
RefinableView<E> |
AbstractDataset.fromAfter(String name,
Comparable value) |
RefinableView<E> |
AbstractDataset.to(String name,
Comparable value) |
RefinableView<E> |
AbstractDataset.toBefore(String name,
Comparable value) |
RefinableView<E> |
AbstractDataset.with(String name,
Object... values) |
Copyright © 2013–2015. All rights reserved.