oracle.dmt.odm
Class RuleAnnotationType
java.lang.Object
|
+--oracle.dmt.odm.Enum
|
+--oracle.dmt.odm.RuleAnnotationType
- All Implemented Interfaces:
- java.io.Serializable
- public class RuleAnnotationType
- extends Enum
The enumeration class RuleAnnotationType
indicates an annotation type
to be contained in an instance of MiningRule
.
The values include confidence and probability.
- See Also:
MiningRule
, Serialized Form
Type | Method |
static RuleAnnotationType |
getInstance(int id)
Returns an instance of RuleAnnotationType enumeration
that corresponds to the specified identifier. |
static RuleAnnotationType |
getInstance(java.lang.String name)
Returns an instance of RuleAnnotationType enumeration
that corresponds to the specified name. |
static RuleAnnotationType[] |
list()
Returns a list of all instances of RuleAnnotationType enumerations. |
static java.lang.String[] |
listNames()
Returns a list of the values available in enumeration
RuleAnnotationType . |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
confidence
public static final RuleAnnotationType confidence
- Specifies the confidence associated with the rule.
probability
public static final RuleAnnotationType probability
- Specifies the probablility associated with the rule.
listNames
public static java.lang.String[] listNames()
- Returns a list of the values available in enumeration
RuleAnnotationType
.
- Returns:
- String[] - The values of the enumeration
list
public static RuleAnnotationType[] list()
- Returns a list of all instances of
RuleAnnotationType
enumerations.
- Returns:
- RuleAnnotationType[] - The instances of
RuleAnnotationType
getInstance
public static RuleAnnotationType getInstance(java.lang.String name)
- Returns an instance of
RuleAnnotationType
enumeration
that corresponds to the specified name.
- Parameters:
name
- The value of the enumeration- Returns:
- RuleAnnotationType - An instance of
RuleAnnotationType
which
contains a value that matches to the specified name.
getInstance
public static RuleAnnotationType getInstance(int id)
- Returns an instance of
RuleAnnotationType
enumeration
that corresponds to the specified identifier.
- Parameters:
id
- The identifier of the enumeration.- Returns:
- RuleAnnotationType - An instance of
RuleAnnotationType
which
contains a value that matches to the specified identifier.