* @param formatClass The {@code FileOutputFormat} to write the data to
* @return A new {@code Target} instance
*/
public static <K extends Writable, V extends Writable> Target formattedFile(
Path path, Class<? extends FileOutputFormat<K, V>> formatClass) {
return new FileTargetImpl(path, formatClass, SequentialFileNamingScheme.getInstance());
}