public static enum WriterUtils.WriterFilePathType extends Enum<WriterUtils.WriterFilePathType>
| Enum Constant and Description |
|---|
DEFAULT
Write records into the output file decided by
Extract |
NAMESPACE_TABLE
Write records into namespace/table folder.
|
TABLENAME
TABLENAME should be used for jobs that pull from multiple tables/topics and intend to write the records
in each table/topic to a separate folder.
|
| Modifier and Type | Method and Description |
|---|---|
static WriterUtils.WriterFilePathType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WriterUtils.WriterFilePathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WriterUtils.WriterFilePathType NAMESPACE_TABLE
public static final WriterUtils.WriterFilePathType TABLENAME
public static final WriterUtils.WriterFilePathType DEFAULT
Extractpublic static WriterUtils.WriterFilePathType[] values()
for (WriterUtils.WriterFilePathType c : WriterUtils.WriterFilePathType.values()) System.out.println(c);
public static WriterUtils.WriterFilePathType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null