public enum MultiUpdateChangesApplied extends java.lang.Enum<MultiUpdateChangesApplied>
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.
MultiUpdateExtendedResult
Enum Constant and Description |
---|
ALL
Indicates that all of the changes contained in the multi-update request
were applied to the server.
|
NONE
Indicates that none of the changes contained in the multi-update request
were applied to the server.
|
PARTIAL
Indicates that one or more changes from the multi-update request were
applied, but at least one failure was also encountered.
|
Modifier and Type | Method and Description |
---|---|
static MultiUpdateChangesApplied |
forName(java.lang.String name)
Retrieves the multi-update changes applied value with the specified name.
|
int |
intValue()
Retrieves the integer value associated with this changes applied value.
|
static MultiUpdateChangesApplied |
valueOf(int intValue)
Retrieves the multi-update changes applied value with the specified integer
value.
|
static MultiUpdateChangesApplied |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiUpdateChangesApplied[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiUpdateChangesApplied NONE
public static final MultiUpdateChangesApplied ALL
public static final MultiUpdateChangesApplied PARTIAL
public static MultiUpdateChangesApplied[] values()
for (MultiUpdateChangesApplied c : MultiUpdateChangesApplied.values()) System.out.println(c);
public static MultiUpdateChangesApplied 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 MultiUpdateChangesApplied valueOf(int intValue)
intValue
- The integer value for the changes applied value to
retrieve.null
if there is no changes applied value with
the specified integer value.@Nullable public static MultiUpdateChangesApplied forName(@NotNull java.lang.String name)
name
- The name of the multi-update changes applied value to
retrieve. It must not be null
.null
if no such value is defined.