com.sfm.ap210.jsdai.gdt
Enum ToleranceFeature.FeatureType

java.lang.Object
  extended by java.lang.Enum<ToleranceFeature.FeatureType>
      extended by com.sfm.ap210.jsdai.gdt.ToleranceFeature.FeatureType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ToleranceFeature.FeatureType>
Enclosing interface:
ToleranceFeature

public static enum ToleranceFeature.FeatureType
extends java.lang.Enum<ToleranceFeature.FeatureType>


Enum Constant Summary
ALIGNMENT
           
ALIGNMENTPLANE
           
CENTERPLANE
           
CENTREOFSYMMETRY
           
FEATUREOFSIZE
           
GENERIC
           
TANGENT
           
TANGENTPLANE
           
 
Method Summary
static ToleranceFeature.FeatureType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ToleranceFeature.FeatureType[] 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

CENTERPLANE

public static final ToleranceFeature.FeatureType CENTERPLANE

FEATUREOFSIZE

public static final ToleranceFeature.FeatureType FEATUREOFSIZE

CENTREOFSYMMETRY

public static final ToleranceFeature.FeatureType CENTREOFSYMMETRY

GENERIC

public static final ToleranceFeature.FeatureType GENERIC

TANGENTPLANE

public static final ToleranceFeature.FeatureType TANGENTPLANE

TANGENT

public static final ToleranceFeature.FeatureType TANGENT

ALIGNMENTPLANE

public static final ToleranceFeature.FeatureType ALIGNMENTPLANE

ALIGNMENT

public static final ToleranceFeature.FeatureType ALIGNMENT
Method Detail

values

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

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

valueOf

public static ToleranceFeature.FeatureType 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