public enum ConditionalValueType extends Enum<ConditionalValueType>
ConditionalValue
type.Enum Constant and Description |
---|
AUTOMATIC
The shortest data bar is proportional to the minimum value and the longest data bar is proportional to the maximum value from the applied ranges.
|
FORMULA
A formula.
|
HIGHEST
Highest value from the applied ranges.
|
LOWEST
Lowest value from the applied ranges.
|
NONE
No conditional value.
|
NUMBER
A constant number.
|
PERCENT
A percentage between the lowest and highest values from the applied ranges.
|
PERCENTILE
A percentile ranking of the values from the applied ranges.
|
Modifier and Type | Method and Description |
---|---|
static ConditionalValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionalValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionalValueType AUTOMATIC
public static final ConditionalValueType FORMULA
public static final ConditionalValueType HIGHEST
public static final ConditionalValueType LOWEST
public static final ConditionalValueType NONE
public static final ConditionalValueType NUMBER
public static final ConditionalValueType PERCENT
public static final ConditionalValueType PERCENTILE
public static ConditionalValueType 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 ConditionalValueType[] values()
for (ConditionalValueType c : ConditionalValueType.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.