de.upb.hni.vmagic.expression
Enum VhdlObject.ObjectClass

java.lang.Object
  extended by java.lang.Enum<VhdlObject.ObjectClass>
      extended by de.upb.hni.vmagic.expression.VhdlObject.ObjectClass
All Implemented Interfaces:
OutputEnum, java.io.Serializable, java.lang.Comparable<VhdlObject.ObjectClass>
Enclosing class:
VhdlObject<T extends VhdlObject>

public static enum VhdlObject.ObjectClass
extends java.lang.Enum<VhdlObject.ObjectClass>
implements OutputEnum

Object class describes the type of VhdlObject.


Enum Constant Summary
CONSTANT
          Constant.
FILE
          File.
SIGNAL
          Signal.
VARIABLE
          Variable.
 
Method Summary
 java.lang.String getLowerCase()
          Returns a lower case version of this enum.
 java.lang.String getUpperCase()
          Returns a upper case version of this enum.
static VhdlObject.ObjectClass valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VhdlObject.ObjectClass[] 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

CONSTANT

public static final VhdlObject.ObjectClass CONSTANT
Constant.


FILE

public static final VhdlObject.ObjectClass FILE
File.


SIGNAL

public static final VhdlObject.ObjectClass SIGNAL
Signal.


VARIABLE

public static final VhdlObject.ObjectClass VARIABLE
Variable.

Method Detail

values

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

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

valueOf

public static VhdlObject.ObjectClass 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

getLowerCase

public java.lang.String getLowerCase()
Description copied from interface: OutputEnum
Returns a lower case version of this enum.

Specified by:
getLowerCase in interface OutputEnum
Returns:
a lower case version

getUpperCase

public java.lang.String getUpperCase()
Description copied from interface: OutputEnum
Returns a upper case version of this enum.

Specified by:
getUpperCase in interface OutputEnum
Returns:
a upper case version