public enum MultiUpdateErrorBehavior extends java.lang.Enum<MultiUpdateErrorBehavior>
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds
package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
MultiUpdateExtendedRequest
Enum Constant and Description |
---|
ABORT_ON_ERROR
The behavior which indicates that processing will end for the multi-update
operation after the first failure is encountered while attempting to
apply a change.
|
ATOMIC
The behavior which indicates that all operations must be processed
atomically.
|
CONTINUE_ON_ERROR
The behavior which indicates that the server should attempt to process all
elements of the multi-update request even if one or more failures are
encountered.
|
Modifier and Type | Method and Description |
---|---|
static MultiUpdateErrorBehavior |
forName(java.lang.String name)
Retrieves the multi-update error behavior with the specified name.
|
int |
intValue()
Retrieves the integer value associated with this error behavior.
|
static MultiUpdateErrorBehavior |
valueOf(int intValue)
Retrieves the multi-update error behavior value with the specified integer
value.
|
static MultiUpdateErrorBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiUpdateErrorBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiUpdateErrorBehavior ATOMIC
public static final MultiUpdateErrorBehavior ABORT_ON_ERROR
public static final MultiUpdateErrorBehavior CONTINUE_ON_ERROR
public static MultiUpdateErrorBehavior[] values()
for (MultiUpdateErrorBehavior c : MultiUpdateErrorBehavior.values()) System.out.println(c);
public static MultiUpdateErrorBehavior 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 int intValue()
@Nullable public static MultiUpdateErrorBehavior valueOf(int intValue)
intValue
- The integer value for the error behavior to retrieve.null
if there is no error behavior with the specified
value.@Nullable public static MultiUpdateErrorBehavior forName(@NotNull java.lang.String name)
name
- The name of the multi-update error behavior to retrieve. It
must not be null
.null
if no
such behavior is defined.