public enum EnumRandomsCorrectionMethod extends java.lang.Enum<EnumRandomsCorrectionMethod>
| Enum Constant and Description |
|---|
DELAYED_EVENT_SUBTRACTION
The DELAYE d_ even t_ subtraction.
|
NO_RANDOMS_CORRECTION
The N o_ random s_ correction.
|
SINGLES_ESTIMATION
The SINGLE s_ estimation.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumRandomsCorrectionMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumRandomsCorrectionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumRandomsCorrectionMethod NO_RANDOMS_CORRECTION
public static final EnumRandomsCorrectionMethod DELAYED_EVENT_SUBTRACTION
public static final EnumRandomsCorrectionMethod SINGLES_ESTIMATION
public static EnumRandomsCorrectionMethod[] values()
for (EnumRandomsCorrectionMethod c : EnumRandomsCorrectionMethod.values()) System.out.println(c);
public static EnumRandomsCorrectionMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()