public enum CountPolicy extends Enum<CountPolicy>
Query
supported count-policy.Enum Constant and Description |
---|
ESTIMATE
Estimate count policy is supported.
|
EXACT
Exact count policy is supported.
|
NONE
No count policy is supported.
|
Modifier and Type | Method and Description |
---|---|
static CountPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountPolicy ESTIMATE
public static final CountPolicy EXACT
public static final CountPolicy NONE
public static CountPolicy[] values()
for (CountPolicy c : CountPolicy.values()) System.out.println(c);
public static CountPolicy 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 © 2010-2018, ForgeRock All Rights Reserved.