public static enum RequestContext.RequestFlag extends Enum<RequestContext.RequestFlag>
Enum Constant and Description |
---|
INTERNAL
Internal operations.
|
REPLICATION_REPAIR
Replication repair (via control or automatically generated) operation.
|
REPLICATION_REPLAY
Replicated operation.
|
Modifier and Type | Method and Description |
---|---|
static RequestContext.RequestFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestContext.RequestFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestContext.RequestFlag INTERNAL
public static final RequestContext.RequestFlag REPLICATION_REPLAY
Also known as synchronize/synchronization.
public static final RequestContext.RequestFlag REPLICATION_REPAIR
Also known as dontSynchronize.
public static RequestContext.RequestFlag[] values()
for (RequestContext.RequestFlag c : RequestContext.RequestFlag.values()) System.out.println(c);
public static RequestContext.RequestFlag 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–2017 ForgeRock AS. All rights reserved.