This project has retired. For details please refer to its
Attic page.
At (Apache Crunch 0.3.0-incubating API)
org.apache.crunch.io
Class At
java.lang.Object
org.apache.crunch.io.At
public class At
- extends Object
Static factory methods for creating various SourceTarget
types.
Method Summary |
static
|
avroFile(org.apache.hadoop.fs.Path path,
AvroType<T> avroType)
|
static
|
avroFile(String pathName,
AvroType<T> avroType)
|
static
|
sequenceFile(org.apache.hadoop.fs.Path path,
PType<K> keyType,
PType<V> valueType)
|
static
|
sequenceFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
|
static
|
sequenceFile(String pathName,
PType<K> keyType,
PType<V> valueType)
|
static
|
sequenceFile(String pathName,
PType<T> ptype)
|
static TextFileSourceTarget<String> |
textFile(org.apache.hadoop.fs.Path path)
|
static
|
textFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
|
static TextFileSourceTarget<String> |
textFile(String pathName)
|
static
|
textFile(String pathName,
PType<T> ptype)
|
At
public At()
avroFile
public static <T> AvroFileSourceTarget<T> avroFile(String pathName,
AvroType<T> avroType)
avroFile
public static <T> AvroFileSourceTarget<T> avroFile(org.apache.hadoop.fs.Path path,
AvroType<T> avroType)
sequenceFile
public static <T> SeqFileSourceTarget<T> sequenceFile(String pathName,
PType<T> ptype)
sequenceFile
public static <T> SeqFileSourceTarget<T> sequenceFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
sequenceFile
public static <K,V> SeqFileTableSourceTarget<K,V> sequenceFile(String pathName,
PType<K> keyType,
PType<V> valueType)
sequenceFile
public static <K,V> SeqFileTableSourceTarget<K,V> sequenceFile(org.apache.hadoop.fs.Path path,
PType<K> keyType,
PType<V> valueType)
textFile
public static TextFileSourceTarget<String> textFile(String pathName)
textFile
public static TextFileSourceTarget<String> textFile(org.apache.hadoop.fs.Path path)
textFile
public static <T> TextFileSourceTarget<T> textFile(String pathName,
PType<T> ptype)
textFile
public static <T> TextFileSourceTarget<T> textFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
Copyright © 2012 The Apache Software Foundation. All Rights Reserved.