public static enum AggregationOptions.Granularity extends Enum<AggregationOptions.Granularity>
ENTITY
, if an entity group contains both
valid and invalid entities, the aggregation will still consider the valid entities as valid.
When set to ENTITY_GROUP
, when there are invalid entities in an entity group, all the
entities in the same entity group are considered invalid.Enum Constant and Description |
---|
ENTITY |
ENTITY_GROUP |
Modifier and Type | Method and Description |
---|---|
static AggregationOptions.Granularity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationOptions.Granularity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationOptions.Granularity ENTITY
public static final AggregationOptions.Granularity ENTITY_GROUP
public static AggregationOptions.Granularity[] values()
for (AggregationOptions.Granularity c : AggregationOptions.Granularity.values()) System.out.println(c);
public static AggregationOptions.Granularity 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 null