public static enum TsvFieldTrait.Kind extends Enum<TsvFieldTrait.Kind>
Enum Constant and Description |
---|
FILE_NAME
fields which keep file name.
|
IGNORE
ignored fields.
|
VALUE
normal fields.
|
Modifier and Type | Method and Description |
---|---|
static TsvFieldTrait.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TsvFieldTrait.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TsvFieldTrait.Kind VALUE
public static final TsvFieldTrait.Kind FILE_NAME
public static final TsvFieldTrait.Kind IGNORE
public static TsvFieldTrait.Kind[] values()
for (TsvFieldTrait.Kind c : TsvFieldTrait.Kind.values()) System.out.println(c);
public static TsvFieldTrait.Kind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.