124125126127128129130
* * @param path The {@code Path} to write the data to * @return A new {@code Target} instance */ public static Target sequenceFile(Path path) { return new SeqFileTarget(path); }
126127128129130131132
50515253545556
public static Target sequenceFile(String pathName) { return sequenceFile(new Path(pathName)); } public static Target sequenceFile(Path path) { return new SeqFileTarget(path); }