Uses of Interface
org.kitesdk.data.View

Packages that use View
org.kitesdk.data Provides interfaces and classes for reading and writing datasets. 
org.kitesdk.data.crunch Provides helper classes for working with datasets using Crunch. 
org.kitesdk.data.mapreduce Provides helper classes for working with datasets using MapReduce. 
org.kitesdk.tools   
 

Uses of View in org.kitesdk.data
 

Subinterfaces of View in org.kitesdk.data
 interface Dataset<E>
           A logical representation of a set of data entities.
 interface RandomAccessDataset<E>
           A Dataset that supports random access operations on entities.
 interface RefinableView<E>
          A RefinableView specifies a subset of a Dataset by one or more logical constraints.
 

Methods in org.kitesdk.data with type parameters of type View
static
<V extends View<GenericRecord>>
V
Datasets.create(String uri, DatasetDescriptor descriptor)
          Create a Dataset for the given dataset or view URI string.
static
<E,V extends View<E>>
V
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>>
V
Datasets.create(URI uri, DatasetDescriptor descriptor)
          Create a Dataset for the given dataset or view URI.
static
<E,V extends View<E>>
V
Datasets.create(URI uri, DatasetDescriptor descriptor, Class<E> type)
          Create a Dataset for the given dataset or view URI.
static
<V extends View<GenericRecord>>
V
Datasets.load(String uriString)
          Load a Dataset or View for the given URI string.
static
<E,V extends View<E>>
V
Datasets.load(String uriString, Class<E> type)
          Load a Dataset or View for the given URI string.
static
<V extends View<GenericRecord>>
V
Datasets.load(URI uri)
          Load a Dataset or View for the given URI.
static
<E,V extends View<E>>
V
Datasets.load(URI uri, Class<E> type)
          Load a Dataset or View for the given URI.
 

Uses of View in org.kitesdk.data.crunch
 

Methods in org.kitesdk.data.crunch with parameters of type View
static
<E> ReadableSource<E>
CrunchDatasets.asSource(View<E> view)
          Expose the given View as a Crunch ReadableSource.
static
<E> ReadableSource<E>
CrunchDatasets.asSource(View<E> view, Class<E> type)
          Deprecated. will be removed in 0.16.0; use CrunchDatasets.asSource(View)
static
<E> Target
CrunchDatasets.asTarget(View<E> view)
          Expose the given View as a Crunch Target.
 

Uses of View in org.kitesdk.data.mapreduce
 

Methods in org.kitesdk.data.mapreduce with parameters of type View
 DatasetKeyInputFormat.ConfigBuilder DatasetKeyInputFormat.ConfigBuilder.readFrom(View<?> view)
          Adds configuration for DatasetKeyInputFormat to read from the given Dataset or View instance.
static
<E> void
DatasetKeyOutputFormat.setView(Configuration conf, View<E> view)
          Deprecated. will be removed in 0.16.0; use DatasetKeyOutputFormat.configure(Configuration)
static
<E> void
DatasetKeyInputFormat.setView(Configuration conf, View<E> view)
          Deprecated. will be removed in 0.16.0; use DatasetKeyInputFormat.configure(Configuration)
static
<E> void
DatasetKeyOutputFormat.setView(Job job, View<E> view)
          Deprecated. will be removed in 0.16.0; use DatasetKeyOutputFormat.configure(Job) instead
static
<E> void
DatasetKeyInputFormat.setView(Job job, View<E> view)
          Deprecated. will be removed in 0.16.0; use DatasetKeyInputFormat.configure(Job) instead
 DatasetKeyOutputFormat.ConfigBuilder DatasetKeyOutputFormat.ConfigBuilder.writeTo(View<?> view)
          Adds configuration for DatasetKeyOutputFormat to write to the given Dataset or View instance.
 

Uses of View in org.kitesdk.tools
 

Constructors in org.kitesdk.tools with parameters of type View
CopyTask(View<E> from, View<E> to, Class<E> entityClass)
           
CopyTask(View<E> from, View<E> to, Class<E> entityClass)
           
 



Copyright © 2013–2014. All rights reserved.