| 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 |
RandomAccessDataset<E>
A
Dataset that supports random access operations on entities. |
| Modifier and Type | Method and Description |
|---|---|
static <D extends Dataset<GenericRecord>> |
Datasets.update(String uri,
DatasetDescriptor descriptor)
Update a
Dataset for the given dataset or view URI string. |
static <E,D extends Dataset<E>> |
Datasets.update(String uri,
DatasetDescriptor descriptor,
Class<E> type)
Update a
Dataset for the given dataset or view URI string. |
static <D extends Dataset<GenericRecord>> |
Datasets.update(URI uri,
DatasetDescriptor descriptor)
Update a
Dataset for the given dataset or view URI. |
static <E,D extends Dataset<E>> |
Datasets.update(URI uri,
DatasetDescriptor descriptor,
Class<E> type)
Update a
Dataset for the given dataset or view URI. |
| Modifier and Type | Method and Description |
|---|---|
Dataset<E> |
View.getDataset()
Returns the underlying
Dataset for the
View. |
| 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.
|
| Modifier and Type | Field and Description |
|---|---|
protected Dataset<E> |
AbstractRefinableView.dataset |
| Modifier and Type | Method and Description |
|---|---|
<T> Dataset<T> |
AbstractDataset.asType(Class<T> type)
Creates a copy of this
Dataset that reads and writes entities of
the given type class. |
<E> Dataset<E> |
DatasetRepository.create(String namespace,
String name,
DatasetDescriptor descriptor)
/**
Create a
Dataset with the supplied descriptor. |
<E> Dataset<E> |
AbstractDatasetRepository.create(String namespace,
String name,
DatasetDescriptor descriptor) |
<E> Dataset<E> |
DatasetRepository.create(String namespace,
String name,
DatasetDescriptor descriptor,
Class<E> type)
Create a
Dataset with the supplied descriptor. |
Dataset<E> |
AbstractRefinableView.getDataset() |
Dataset<E> |
AbstractDataset.getDataset() |
<E> Dataset<E> |
DatasetRepository.load(String namespace,
String name)
Get the latest version of a named
Dataset. |
<E> Dataset<E> |
AbstractDatasetRepository.load(String namespace,
String name) |
<E> Dataset<E> |
DatasetRepository.load(String namespace,
String name,
Class<E> type)
Get the latest version of a named
Dataset. |
<E> Dataset<E> |
DatasetRepository.update(String namespace,
String name,
DatasetDescriptor descriptor)
Update an existing
Dataset to reflect the supplied
descriptor. |
<E> Dataset<E> |
AbstractDatasetRepository.update(String namespace,
String name,
DatasetDescriptor descriptor) |
<E> Dataset<E> |
DatasetRepository.update(String namespace,
String name,
DatasetDescriptor descriptor,
Class<E> type)
Update an existing
Dataset to reflect the supplied
descriptor. |
| Constructor and Description |
|---|
AbstractRefinableView(Dataset<E> dataset,
Class<E> type) |
StorageKey.Builder(Dataset dataset) |
Copyright © 2013–2015. All rights reserved.