Package | Description |
---|---|
org.kitesdk.data |
Provides interfaces and classes for reading and writing datasets.
|
Modifier and Type | Method and Description |
---|---|
DatasetDescriptor |
DatasetDescriptor.Builder.build()
Build an instance of the configured dataset descriptor.
|
DatasetDescriptor |
Dataset.getDescriptor()
Get the
DatasetDescriptor associated with this dataset. |
Modifier and Type | Method and Description |
---|---|
static <V extends View<GenericRecord>> |
Datasets.create(String uri,
DatasetDescriptor descriptor)
Create a
Dataset for the given dataset or view URI string. |
static <E,V extends View<E>> |
Datasets.create(String uri,
DatasetDescriptor descriptor,
Class<E> type)
Create a
Dataset for the given dataset or view URI string. |
static <V extends View<GenericRecord>> |
Datasets.create(URI uri,
DatasetDescriptor descriptor)
Create a
Dataset for the given dataset or view URI. |
static <E,V extends View<E>> |
Datasets.create(URI uri,
DatasetDescriptor descriptor,
Class<E> type)
Create a
Dataset for the given dataset or view URI. |
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. |
Constructor and Description |
---|
DatasetDescriptor.Builder(DatasetDescriptor descriptor)
Creates a Builder configured to copy
descriptor , if it is not
modified. |
Copyright © 2013–2015. All rights reserved.