public enum StackAggregationOption extends java.lang.Enum<StackAggregationOption>
Enum Constant and Description |
---|
AggregateCityAndCounty
City and county rates are aggregated.
|
AggregateStateAndCounty
State and county rates are aggregated.
|
FullStackAggregation
Rates are aggregated across all jurisdiction types.
|
NoStackAggregation
No aggregation.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static StackAggregationOption |
valueOf(int intValue) |
static StackAggregationOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StackAggregationOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackAggregationOption NoStackAggregation
public static final StackAggregationOption FullStackAggregation
public static final StackAggregationOption AggregateStateAndCounty
public static final StackAggregationOption AggregateCityAndCounty
public static StackAggregationOption[] values()
for (StackAggregationOption c : StackAggregationOption.values()) System.out.println(c);
public static StackAggregationOption 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 static StackAggregationOption valueOf(int intValue)
public int getValue()