23242526272829
import org.apache.crunch.types.avro.AvroType; import org.apache.hadoop.fs.Path; public class AvroFileSourceTarget<T> extends ReadableSourcePathTargetImpl<T> { public AvroFileSourceTarget(Path path, AvroType<T> atype) { this(path, atype, new SequentialFileNamingScheme()); }
37383940414243
public AvroFileTarget(String path) { this(new Path(path)); } public AvroFileTarget(Path path) { this(path, new SequentialFileNamingScheme()); }
48495051525354
public <T> TextFileTarget(String path) { this(new Path(path)); } public <T> TextFileTarget(Path path) { this(path, new SequentialFileNamingScheme()); }
32333435363738
public SeqFileTableSourceTarget(String path, PTableType<K, V> tableType) { this(new Path(path), tableType); } public SeqFileTableSourceTarget(Path path, PTableType<K, V> tableType) { this(path, tableType, new SequentialFileNamingScheme()); }
28293031323334
public SeqFileSourceTarget(String path, PType<T> ptype) { this(new Path(path), ptype); } public SeqFileSourceTarget(Path path, PType<T> ptype) { this(path, ptype, new SequentialFileNamingScheme()); }
30313233343536
public SeqFileTarget(String path) { this(new Path(path)); } public SeqFileTarget(Path path) { this(path, new SequentialFileNamingScheme()); }