public enum QuantileMethod extends Enum<QuantileMethod>
Enum Constant and Description |
---|
HIGHER
Higher data point (j)
|
LINEAR
Linear interpolation between i and j
|
LOWER
Lower data point (i)
|
MIDPOINT
(i + j)/2
|
NEAREST
i or j, whichever is nearest
|
Modifier and Type | Method and Description |
---|---|
static QuantileMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuantileMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuantileMethod LINEAR
public static final QuantileMethod LOWER
public static final QuantileMethod HIGHER
public static final QuantileMethod MIDPOINT
public static final QuantileMethod NEAREST
public static QuantileMethod[] values()
for (QuantileMethod c : QuantileMethod.values()) System.out.println(c);
public static QuantileMethod 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 nullCopyright © 2024. All rights reserved.