SCCT.JavaSubscriber
Enum SCCT_2DArrayPackage.SCCT_ArrayType

java.lang.Object
  extended by java.lang.Enum<SCCT_2DArrayPackage.SCCT_ArrayType>
      extended by SCCT.JavaSubscriber.SCCT_2DArrayPackage.SCCT_ArrayType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SCCT_2DArrayPackage.SCCT_ArrayType>
Enclosing class:
SCCT_2DArrayPackage

public static enum SCCT_2DArrayPackage.SCCT_ArrayType
extends java.lang.Enum<SCCT_2DArrayPackage.SCCT_ArrayType>

Enum of all supported array types.


Enum Constant Summary
BOOL
           
DOUBLE
           
FLOAT
           
INTEGER
           
LONG
           
SHORT
           
STRING
           
 
Method Summary
static SCCT_2DArrayPackage.SCCT_ArrayType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SCCT_2DArrayPackage.SCCT_ArrayType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DOUBLE

public static final SCCT_2DArrayPackage.SCCT_ArrayType DOUBLE

FLOAT

public static final SCCT_2DArrayPackage.SCCT_ArrayType FLOAT

INTEGER

public static final SCCT_2DArrayPackage.SCCT_ArrayType INTEGER

SHORT

public static final SCCT_2DArrayPackage.SCCT_ArrayType SHORT

LONG

public static final SCCT_2DArrayPackage.SCCT_ArrayType LONG

STRING

public static final SCCT_2DArrayPackage.SCCT_ArrayType STRING

BOOL

public static final SCCT_2DArrayPackage.SCCT_ArrayType BOOL
Method Detail

values

public static SCCT_2DArrayPackage.SCCT_ArrayType[] 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 (SCCT_2DArrayPackage.SCCT_ArrayType c : SCCT_2DArrayPackage.SCCT_ArrayType.values())
    System.out.println(c);

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

valueOf

public static SCCT_2DArrayPackage.SCCT_ArrayType 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