public static enum Symbol.PredefinedSymbol extends java.lang.Enum<Symbol.PredefinedSymbol>
Enum Constant and Description |
---|
ALPHA
the alpha symbol (Greek letter)
|
BETA
the beta symbol (Greek letter)
|
DELTA
the delta symbol (Greek letter)
|
DELTA_BIG
the delta symbol as capital (Greek letter)
|
GAMMA
the gamma symbol (Greek letter)
|
INFINITY
the infinity symbol
|
LAMBDA
the lambda symbol (Greek letter)
|
PHI
the phi symbol (Greek letter)
|
PI
the pi symbol (Greek letter)
|
RHO
the rho symbol (Greek letter)
|
SIGMA
the sigma symbol (Greek letter)
|
SIGMA_BIG
the sigma symbol as capital (Greek letter)
|
SUM
the sum symbol
|
TAU
the tau symbol (Greek letter)
|
THETA
the theta symbol (Greek letter)
|
Modifier and Type | Method and Description |
---|---|
static Symbol.PredefinedSymbol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Symbol.PredefinedSymbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Symbol.PredefinedSymbol ALPHA
public static final Symbol.PredefinedSymbol BETA
public static final Symbol.PredefinedSymbol GAMMA
public static final Symbol.PredefinedSymbol DELTA
public static final Symbol.PredefinedSymbol DELTA_BIG
public static final Symbol.PredefinedSymbol THETA
public static final Symbol.PredefinedSymbol LAMBDA
public static final Symbol.PredefinedSymbol PI
public static final Symbol.PredefinedSymbol SIGMA
public static final Symbol.PredefinedSymbol SIGMA_BIG
public static final Symbol.PredefinedSymbol RHO
public static final Symbol.PredefinedSymbol TAU
public static final Symbol.PredefinedSymbol PHI
public static final Symbol.PredefinedSymbol INFINITY
public static final Symbol.PredefinedSymbol SUM
public static Symbol.PredefinedSymbol[] values()
for (Symbol.PredefinedSymbol c : Symbol.PredefinedSymbol.values()) System.out.println(c);
public static Symbol.PredefinedSymbol 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