Enum Partition
- java.lang.Object
-
- java.lang.Enum<Partition>
-
- com.tibco.patterns.learn.training.Partition
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract COErrorRatecreateDftCO(COErrorRate trainCO)java.lang.StringgetAbbr()java.lang.StringgetName()static PartitionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Partition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static Partition[] 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 (Partition c : Partition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Partition 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 namejava.lang.NullPointerException- if the argument is null
-
createDftCO
public abstract COErrorRate createDftCO(COErrorRate trainCO)
- Parameters:
trainCO- training observer required to create validation observer (not null). Not used to create the training observer.- Returns:
- the created default observer for this partition.
-
getName
public java.lang.String getName()
- Returns:
- the name of the partition
-
getAbbr
public java.lang.String getAbbr()
- Returns:
- the abbreviation of the partition
-
-