Enum DistributionFunctions
- java.lang.Object
-
- java.lang.Enum<DistributionFunctions>
-
- org.kie.pmml.api.enums.builtinfunctions.DistributionFunctions
-
- All Implemented Interfaces:
Serializable,Comparable<DistributionFunctions>
public enum DistributionFunctions extends Enum<DistributionFunctions>
- See Also:
- Built-in functions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERFNORMAL_CDFNORMAL_IDFNORMAL_PDFSTD_NORMAL_CDFSTD_NORMAL_IDFSTD_NORMAL_PDF
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DistributionFunctionsbyName(String name)StringgetName()ObjectgetValue(Object[] inputData)static booleanisDistributionFunctions(String name)static DistributionFunctionsvalueOf(String name)Returns the enum constant of this type with the specified name.static DistributionFunctions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL_CDF
public static final DistributionFunctions NORMAL_CDF
-
NORMAL_PDF
public static final DistributionFunctions NORMAL_PDF
-
STD_NORMAL_CDF
public static final DistributionFunctions STD_NORMAL_CDF
-
STD_NORMAL_PDF
public static final DistributionFunctions STD_NORMAL_PDF
-
ERF
public static final DistributionFunctions ERF
-
NORMAL_IDF
public static final DistributionFunctions NORMAL_IDF
-
STD_NORMAL_IDF
public static final DistributionFunctions STD_NORMAL_IDF
-
-
Method Detail
-
values
public static DistributionFunctions[] 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 (DistributionFunctions c : DistributionFunctions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DistributionFunctions valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isDistributionFunctions
public static boolean isDistributionFunctions(String name)
-
byName
public static DistributionFunctions byName(String name)
-
getName
public String getName()
-
-