public enum AlphanumericDelimiterValues extends java.lang.Enum<AlphanumericDelimiterValues>
List of Alphanumeric delimiters.
Enum Constant and Description |
---|
DOUBLEQUOTE
" : a double quotation mark for other variants
|
QUOTE
' : a quotation mark for IBM variants type
|
Modifier and Type | Method and Description |
---|---|
static AlphanumericDelimiterValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlphanumericDelimiterValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlphanumericDelimiterValues DOUBLEQUOTE
" : a double quotation mark for other variants
public static final AlphanumericDelimiterValues QUOTE
' : a quotation mark for IBM variants type
public static AlphanumericDelimiterValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static AlphanumericDelimiterValues[] values()
for (AlphanumericDelimiterValues c : AlphanumericDelimiterValues.values()) System.out.println(c);