com.rapidtransform.classification.model
Enum ClassificationType

java.lang.Object
  extended by java.lang.Enum<ClassificationType>
      extended by com.rapidtransform.classification.model.ClassificationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ClassificationType>

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

This enumeration represents possible types for classified objects. TODO is type the proper term?

Author:
S. Werner

Enum Constant Summary
APPLICATION_CONTROL
           
ASSEMBLY
           
COLLECTION
           
COMPLETELY_KNOCKED_DOWN
           
DETAIL
           
IN_PROCESS
           
PART
           
PROTOTYPE
           
RAW_MATERIAL
           
REGULATED
           
SAFETY
           
SERVICE
           
TOOL
           
 
Method Summary
static ClassificationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ClassificationType[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

APPLICATION_CONTROL

public static final ClassificationType APPLICATION_CONTROL

ASSEMBLY

public static final ClassificationType ASSEMBLY

COLLECTION

public static final ClassificationType COLLECTION

COMPLETELY_KNOCKED_DOWN

public static final ClassificationType COMPLETELY_KNOCKED_DOWN

DETAIL

public static final ClassificationType DETAIL

IN_PROCESS

public static final ClassificationType IN_PROCESS

PART

public static final ClassificationType PART

PROTOTYPE

public static final ClassificationType PROTOTYPE

RAW_MATERIAL

public static final ClassificationType RAW_MATERIAL

REGULATED

public static final ClassificationType REGULATED

SAFETY

public static final ClassificationType SAFETY

SERVICE

public static final ClassificationType SERVICE

TOOL

public static final ClassificationType TOOL
Method Detail

values

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

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

valueOf

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