enum EvioDictionaryEntryType extends java.lang.Enum<EvioDictionaryEntryType>
Enum Constant and Description |
---|
TAG_NUM
Valid tag and num, with or without a tagEnd.
|
TAG_ONLY
Valid tag, but no num or tagEnd.
|
TAG_RANGE
Valid tag and tagEnd, but no num.
|
Modifier and Type | Method and Description |
---|---|
static EvioDictionaryEntryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EvioDictionaryEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvioDictionaryEntryType TAG_NUM
public static final EvioDictionaryEntryType TAG_ONLY
public static final EvioDictionaryEntryType TAG_RANGE
public static EvioDictionaryEntryType[] values()
for (EvioDictionaryEntryType c : EvioDictionaryEntryType.values()) System.out.println(c);
public static EvioDictionaryEntryType 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 null