public static enum CSVSchemaColumn.TransformType extends Enum<CSVSchemaColumn.TransformType>
| Enum Constant and Description |
|---|
BINARIZE |
COPY |
LABEL |
NORMALIZE |
SKIP |
| Modifier and Type | Method and Description |
|---|---|
static CSVSchemaColumn.TransformType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVSchemaColumn.TransformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVSchemaColumn.TransformType COPY
public static final CSVSchemaColumn.TransformType SKIP
public static final CSVSchemaColumn.TransformType BINARIZE
public static final CSVSchemaColumn.TransformType NORMALIZE
public static final CSVSchemaColumn.TransformType LABEL
public static CSVSchemaColumn.TransformType[] values()
for (CSVSchemaColumn.TransformType c : CSVSchemaColumn.TransformType.values()) System.out.println(c);
public static CSVSchemaColumn.TransformType 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 nullCopyright © 2015. All rights reserved.