public enum DistributionFunctions extends Enum<DistributionFunctions>
| Enum Constant and Description |
|---|
ERF |
NORMAL_CDF |
NORMAL_IDF |
NORMAL_PDF |
STD_NORMAL_CDF |
STD_NORMAL_IDF |
STD_NORMAL_PDF |
| Modifier and Type | Method and Description |
|---|---|
static DistributionFunctions |
byName(String name) |
String |
getName() |
Object |
getValue(Object[] inputData) |
static boolean |
isDistributionFunctions(String name) |
static DistributionFunctions |
valueOf(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.
|
public static final DistributionFunctions NORMAL_CDF
public static final DistributionFunctions NORMAL_PDF
public static final DistributionFunctions STD_NORMAL_CDF
public static final DistributionFunctions STD_NORMAL_PDF
public static final DistributionFunctions ERF
public static final DistributionFunctions NORMAL_IDF
public static final DistributionFunctions STD_NORMAL_IDF
public static DistributionFunctions[] values()
for (DistributionFunctions c : DistributionFunctions.values()) System.out.println(c);
public static DistributionFunctions valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static boolean isDistributionFunctions(String name)
public static DistributionFunctions byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.