com.eu.miscedautils.SortHDL
Enum SortHDLBase.ObjType

java.lang.Object
  extended by java.lang.Enum<SortHDLBase.ObjType>
      extended by com.eu.miscedautils.SortHDL.SortHDLBase.ObjType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SortHDLBase.ObjType>
Enclosing class:
SortHDLBase

public static enum SortHDLBase.ObjType
extends java.lang.Enum<SortHDLBase.ObjType>


Enum Constant Summary
ARCHITECTURE
           
BINDING
           
COMPONENT
           
CONFIGURATION
           
ENTITY
           
INSTANCE
           
MODULE
           
PACKAGE
           
PACKAGEBODY
           
UNDEFINED_CONFIGURATION
           
UNDEFINED_MODULE
           
UNKNOWN
           
 
Method Summary
static SortHDLBase.ObjType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SortHDLBase.ObjType[] 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

MODULE

public static final SortHDLBase.ObjType MODULE

ENTITY

public static final SortHDLBase.ObjType ENTITY

ARCHITECTURE

public static final SortHDLBase.ObjType ARCHITECTURE

CONFIGURATION

public static final SortHDLBase.ObjType CONFIGURATION

PACKAGE

public static final SortHDLBase.ObjType PACKAGE

PACKAGEBODY

public static final SortHDLBase.ObjType PACKAGEBODY

COMPONENT

public static final SortHDLBase.ObjType COMPONENT

INSTANCE

public static final SortHDLBase.ObjType INSTANCE

BINDING

public static final SortHDLBase.ObjType BINDING

UNDEFINED_MODULE

public static final SortHDLBase.ObjType UNDEFINED_MODULE

UNDEFINED_CONFIGURATION

public static final SortHDLBase.ObjType UNDEFINED_CONFIGURATION

UNKNOWN

public static final SortHDLBase.ObjType UNKNOWN
Method Detail

values

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

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

valueOf

public static SortHDLBase.ObjType 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