javax.datamining
Class SizeUnit
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.SizeUnit
- All Implemented Interfaces:
- java.lang.Comparable, java.io.Serializable
- public class SizeUnit
- extends Enum
The enumeration SizeUnit specifies
the unit of the number being returned.
- Author:
- JSR-73 Java Data Mining Expert Group
- See Also:
- Serialized Form
|
Method Summary |
static void |
addExtension(java.lang.String name)
Adds a vendor extension name to SizeUnit. |
static SizeUnit |
valueOf(java.lang.String name)
Returns an instance of SizeUnit corresponding to the specified name. |
static SizeUnit[] |
values()
Returns a list of all SizeUnit enumerations defined. |
| Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
count
public static final SizeUnit count
percentage
public static final SizeUnit percentage
addExtension
public static void addExtension(java.lang.String name)
throws JDMException
- Adds a vendor extension
name to SizeUnit.
- 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 SizeUnit valueOf(java.lang.String name)
throws JDMException
- Returns an instance of
SizeUnit corresponding to the specified name.
- Parameters:
name - The name of the enumeration value
- Returns:
SizeUnit - The instance of the specified enumeration.
- Throws:
JDMException - When name is not valid.
values
public static SizeUnit[] values()
- Returns a list of all
SizeUnit enumerations defined.
- Returns:
SizeUnit[]