com.ibm.pdp.maf.rpp.pac.segment
Enum SocrateCharacteristicTypeValues

java.lang.Object
  extended by java.lang.Enum<SocrateCharacteristicTypeValues>
      extended by com.ibm.pdp.maf.rpp.pac.segment.SocrateCharacteristicTypeValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SocrateCharacteristicTypeValues>

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

List of Socrate characteristic types.


Enum Constant Summary
_A
           
_I
           
_L
           
_R
           
 
Method Summary
static SocrateCharacteristicTypeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SocrateCharacteristicTypeValues[] 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

_A

public static final SocrateCharacteristicTypeValues _A

Ring


_I

public static final SocrateCharacteristicTypeValues _I

Reverse


_L

public static final SocrateCharacteristicTypeValues _L

Relation


_R

public static final SocrateCharacteristicTypeValues _R

Simple reference or referenced

Method Detail

valueOf

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

values

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

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