jcfunc.parameters
Enum paramGCC

java.lang.Object
  extended by java.lang.Enum<paramGCC>
      extended by jcfunc.parameters.paramGCC
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<paramGCC>

public enum paramGCC
extends java.lang.Enum<paramGCC>

Enum paramGCC contains returned values for control function CF.GCC.


Enum Constant Summary
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
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FollowedPairAsOne

public static final paramGCC FollowedPairAsOne
the following two graphic characters are to be imaged as one single graphic symbol


BeginningSet

public static final paramGCC BeginningSet
the beginning of a string of graphic characters which are to be imaged as one single graphic symbol


EndSet

public static final paramGCC EndSet
the end of a string of graphic characters which are to be imaged as one single graphic symbol


Nonstandard

public static final paramGCC Nonstandard
Don't define in Standart

Method Detail

values

public static paramGCC[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (paramGCC c : paramGCC.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static paramGCC valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getIntValue

public static int getIntValue(paramGCC val)
Returns int-value, which is corresponded to enum-value.

Parameters:
val - enum-value
Returns:
int-value

getEnumValue

public static paramGCC getEnumValue(int val)
Returns enum-value by int-value.

Parameters:
val - int-value
Returns:
enum-value