javax.datamining.association
Class AssociationCapability

java.lang.Object
  |
  +--javax.datamining.Enum
        |
        +--javax.datamining.association.AssociationCapability
All Implemented Interfaces:
java.lang.Comparable, java.io.Serializable

public class AssociationCapability
extends Enum

The enumeration AssociationCapability enumerates a list of the capabilities of the association rules function being supported in a particular implementation.

Author:
JSR-73 Java Data Mining Expert Group
See Also:
Serialized Form

Field Summary
static AssociationCapability antecedentLength
           
static AssociationCapability automatedDataPreparation
           
static AssociationCapability consequentLength
           
static AssociationCapability excludedItems
           
static AssociationCapability includedItems
           
static AssociationCapability logicalAttributeUsage
           
static AssociationCapability logicalData
           
static AssociationCapability maximumNumberOfRules
           
static AssociationCapability maximumRuleLength
           
static AssociationCapability minimumConfidence
           
static AssociationCapability minimumSupport
           
static AssociationCapability outlierTreatment
           
static AssociationCapability supplementaryAttributes
           
static AssociationCapability taxonomy
           
 
Method Summary
static void addExtension(java.lang.String name)
          Adds a vendor extension name to AssociationCapability.
static AssociationCapability valueOf(java.lang.String name)
          Returns an instance of AssociationCapability corresponding to the specified name.
static AssociationCapability[] values()
          Returns a list of all AssociationCapability enumerations defined.
 
Methods inherited from class javax.datamining.Enum
compareTo, equals, name
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

antecedentLength

public static final AssociationCapability antecedentLength

automatedDataPreparation

public static final AssociationCapability automatedDataPreparation

consequentLength

public static final AssociationCapability consequentLength

excludedItems

public static final AssociationCapability excludedItems

includedItems

public static final AssociationCapability includedItems

logicalAttributeUsage

public static final AssociationCapability logicalAttributeUsage

logicalData

public static final AssociationCapability logicalData

maximumNumberOfRules

public static final AssociationCapability maximumNumberOfRules

maximumRuleLength

public static final AssociationCapability maximumRuleLength

minimumConfidence

public static final AssociationCapability minimumConfidence

minimumSupport

public static final AssociationCapability minimumSupport

outlierTreatment

public static final AssociationCapability outlierTreatment

supplementaryAttributes

public static final AssociationCapability supplementaryAttributes

taxonomy

public static final AssociationCapability taxonomy
Method Detail

addExtension

public static void addExtension(java.lang.String name)
                         throws JDMException
Adds a vendor extension name to AssociationCapability.

Parameters:
name - The name of the unique vendor extension
Throws:
JDMException - When name is an invalid string or redundant to existing standard enums.

valueOf

public static AssociationCapability valueOf(java.lang.String name)
                                     throws JDMException
Returns an instance of AssociationCapability corresponding to the specified name.

Parameters:
name - The name of the enumeration value
Returns:
AssociationCapability - The instance of the specified enumeration.
Throws:
JDMException - When name is not valid.

values

public static AssociationCapability[] values()
Returns a list of all AssociationCapability enumerations defined.

Returns:
AssociationCapability[]