Enum Constant and Description |
---|
BeginningSet
the beginning of a string of graphic characters
which are to be imaged as one single graphic symbol
|
EndSet
the end of a string of graphic characters
which are to be imaged as one single graphic symbol
|
FollowedPairAsOne
the following two graphic characters are to be imaged
as one single graphic symbol
|
Nonstandard
Don't define in Standart
|
Modifier and Type | Method and Description |
---|---|
static paramGCC |
getEnumValue(int val)
Returns enum-value by int-value.
|
static int |
getIntValue(paramGCC val)
Returns int-value, which is corresponded to enum-value.
|
static paramGCC |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static paramGCC[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final paramGCC FollowedPairAsOne
public static final paramGCC BeginningSet
public static final paramGCC EndSet
public static final paramGCC Nonstandard
public static paramGCC[] values()
for (paramGCC c : paramGCC.values()) System.out.println(c);
public static paramGCC 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 nullpublic static int getIntValue(paramGCC val)
val
- enum-valuepublic static paramGCC getEnumValue(int val)
val
- int-value