public enum CountPolicy extends Enum<CountPolicy>
| Enum Constant and Description |
|---|
ESTIMATE
Estimated count may be used.
|
EXACT
Exact count is required.
|
NONE
There should be no count returned.
|
| 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 NONE
public static final CountPolicy ESTIMATE
EXACT count or NONE. It should be known to the client which was used as in
QueryResponse.getTotalPagedResultsPolicy()public static final CountPolicy EXACT
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 © 2025 Open Identity Platform Community. All rights reserved.