public static enum Tag.Type extends Enum<Tag.Type>
Enum Constant and Description |
---|
FEATURES |
LOCUS |
ORIGIN |
REFERENCE |
REGULAR |
Modifier and Type | Method and Description |
---|---|
static Tag.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tag.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tag.Type ORIGIN
public static final Tag.Type LOCUS
public static final Tag.Type FEATURES
public static final Tag.Type REFERENCE
public static final Tag.Type REGULAR
public static Tag.Type[] values()
for (Tag.Type c : Tag.Type.values()) System.out.println(c);
public static Tag.Type 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 © 2017. All rights reserved.