org.aspsimon.termcomp.entity.xtc
Enum Strategy.StrategyInner

java.lang.Object
  extended by java.lang.Enum<Strategy.StrategyInner>
      extended by org.aspsimon.termcomp.entity.xtc.Strategy.StrategyInner
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Strategy.StrategyInner>
Enclosing class:
Strategy

public static enum Strategy.StrategyInner
extends java.lang.Enum<Strategy.StrategyInner>

Schema fragment(s) for this class:

 <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:restriction base="xs:string">
     <xs:enumeration value="FULL"/>
     <xs:enumeration value="INNERMOST"/>
     <xs:enumeration value="OUTERMOST"/>
   </xs:restriction>
 </xs:simpleType>
 


Enum Constant Summary
FULL
           
INNERMOST
           
OUTERMOST
           
 
Method Summary
static Strategy.StrategyInner valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Strategy.StrategyInner[] 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

FULL

public static final Strategy.StrategyInner FULL

INNERMOST

public static final Strategy.StrategyInner INNERMOST

OUTERMOST

public static final Strategy.StrategyInner OUTERMOST
Method Detail

values

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

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

valueOf

public static Strategy.StrategyInner 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