oracle.dmt.odm
Class Enum

java.lang.Object
  |
  +--oracle.dmt.odm.Enum
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ABNModelBuildState, ApplyResultContentOption, AttributeType, AttributeUsage, BooleanOperator, ClusteringStoppingCriterion, ComparisonFunction, DataFormatType, DataPreparationStatus, DataType, DistanceFunction, LocationEqualityLevel, MiningAlgorithm, MiningFunction, MiningStandardType, MiningTaskState, PairCombinationsOption, RuleAnnotationType, RuleSortCriteria, UsageAdjustment

public abstract class Enum
extends java.lang.Object
implements java.io.Serializable

This abstract class is used to implement enumerations. It provides get functions for the predefined set of options.

See Also:
Serialized Form

Method Summary
TypeMethod
 java.lang.String getEnum()
          This returns the current ID of the enumeration, which is set in the data member.
 int getID()
          This returns the current ID of the enumeration, which is set in the data member.
 boolean isEqual(Enum src)
          Returns true if two enumerated options are the same, flase otherwise.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getID

public int getID()
This returns the current ID of the enumeration, which is set in the data member.
Returns:
int

getEnum

public java.lang.String getEnum()
This returns the current ID of the enumeration, which is set in the data member.
Returns:
String

isEqual

public boolean isEqual(Enum src)
Returns true if two enumerated options are the same, flase otherwise.