de.uka.ipd.sdq.ByCounter.utils
Enum JavaTypeEnum

java.lang.Object
  extended by java.lang.Enum<JavaTypeEnum>
      extended by de.uka.ipd.sdq.ByCounter.utils.JavaTypeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<JavaTypeEnum>

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

An enumeration of the types known by Java at bytecode level.


Enum Constant Summary
Array
           
Boolean
           
Byte
           
Char
           
Double
           
Float
           
Int
           
Long
           
Object
           
Short
           
Void
           
 
Method Summary
static JavaTypeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JavaTypeEnum[] 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

Array

public static final JavaTypeEnum Array

Boolean

public static final JavaTypeEnum Boolean

Byte

public static final JavaTypeEnum Byte

Char

public static final JavaTypeEnum Char

Double

public static final JavaTypeEnum Double

Float

public static final JavaTypeEnum Float

Int

public static final JavaTypeEnum Int

Long

public static final JavaTypeEnum Long

Object

public static final JavaTypeEnum Object

Short

public static final JavaTypeEnum Short

Void

public static final JavaTypeEnum Void
Method Detail

values

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

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

valueOf

public static JavaTypeEnum 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