public enum Symbol extends Enum<Symbol>
| Enum Constant and Description |
|---|
ALPHA
Greek letters
|
BETA |
CHI |
DELTA |
EPSILON |
ETA |
GAMMA |
IOTA |
KAPPA |
LAMBDA |
MU |
NU |
OMEGA |
OMICRON |
PHI |
PI |
PSI |
RHO |
SIGMA |
TAU |
THETA |
UPSILON |
XI |
ZETA |
| Modifier and Type | Method and Description |
|---|---|
static Symbol |
forValue(String value)
Finds symbol for given value.
|
String |
getKey()
Returns localization key for this symbol.
|
static Symbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Symbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Symbol ALPHA
public static final Symbol BETA
public static final Symbol GAMMA
public static final Symbol DELTA
public static final Symbol EPSILON
public static final Symbol ZETA
public static final Symbol ETA
public static final Symbol THETA
public static final Symbol IOTA
public static final Symbol KAPPA
public static final Symbol LAMBDA
public static final Symbol MU
public static final Symbol NU
public static final Symbol XI
public static final Symbol OMICRON
public static final Symbol PI
public static final Symbol RHO
public static final Symbol SIGMA
public static final Symbol TAU
public static final Symbol UPSILON
public static final Symbol PHI
public static final Symbol CHI
public static final Symbol PSI
public static final Symbol OMEGA
public static Symbol[] values()
for (Symbol c : Symbol.values()) System.out.println(c);
public static Symbol 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 nullpublic String getKey()
Copyright © 2013. All Rights Reserved.