public enum Alphabet extends Enum<Alphabet> implements Tag<Alphabet>
| Enum Constant and Description |
|---|
SIMPLIFIED_CHINESE
Simplified chinese alphabet
|
TRADITIONAL_CHINESE
Traditional chinese alphabet
|
| Modifier and Type | Method and Description |
|---|---|
Alphabet |
getValue()
Returns the tag value.
|
static Alphabet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Alphabet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Alphabet SIMPLIFIED_CHINESE
public static final Alphabet TRADITIONAL_CHINESE
public static Alphabet[] values()
for (Alphabet c : Alphabet.values()) System.out.println(c);
public static Alphabet 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 © 2016–2022. All rights reserved.