public enum ConditionValueTypes extends java.lang.Enum<ConditionValueTypes>
| Enum Constant and Description |
|---|
AutomaticMax
Specifies that the longest data bar is proportional to the maximum value in
the range.
|
AutomaticMin
Specifies that the shortest data bar is proportional to the minimum value in
the range.
|
Formula
Specifies a formula is used.
|
HighestValue
Specifies the highest value from the list of values.
|
LowestValue
Specifies the lowest value from the list of values.
|
None
Specifies no conditional value.
|
Number
Specifies that a number is used.
|
Percent
Specifies a percentage is used.
|
Percentile
Specifies a percentile is used.
|
| Modifier and Type | Method and Description |
|---|---|
static ConditionValueTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConditionValueTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionValueTypes None
public static final ConditionValueTypes Number
public static final ConditionValueTypes LowestValue
public static final ConditionValueTypes HighestValue
public static final ConditionValueTypes Percent
public static final ConditionValueTypes Formula
public static final ConditionValueTypes Percentile
public static final ConditionValueTypes AutomaticMin
public static final ConditionValueTypes AutomaticMax
public static ConditionValueTypes[] values()
for (ConditionValueTypes c : ConditionValueTypes.values()) System.out.println(c);
public static ConditionValueTypes 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 null