public enum DelimiterType extends Enum<DelimiterType>
Enum Constant and Description |
---|
COMPONENT |
DECIMAL_SEPARATOR |
FIELD |
FIELD_REPEAT |
SEGMENT |
SUB_COMPONENT |
Modifier and Type | Method and Description |
---|---|
static DelimiterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelimiterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelimiterType SEGMENT
public static final DelimiterType FIELD
public static final DelimiterType FIELD_REPEAT
public static final DelimiterType COMPONENT
public static final DelimiterType SUB_COMPONENT
public static final DelimiterType DECIMAL_SEPARATOR
public static DelimiterType[] values()
for (DelimiterType c : DelimiterType.values()) System.out.println(c);
public static DelimiterType 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 © 2020. All rights reserved.