public enum SetNotificationDestinationChangeType extends java.lang.Enum<SetNotificationDestinationChangeType>
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 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.
Enum Constant and Description |
---|
ADD
Indicates that the provided destination details should be added to the
existing set.
|
DELETE
Indicates tht the specified destination details should be removed from the
notification destination.
|
REPLACE
Indicates that the complete set of destination details should be replaced.
|
Modifier and Type | Method and Description |
---|---|
static SetNotificationDestinationChangeType |
forName(java.lang.String name)
Retrieves the set notification destination change type with the specified
name.
|
int |
intValue()
Retrieves the integer value for this set notification destination change
type.
|
static SetNotificationDestinationChangeType |
valueOf(int intValue)
Retrieves the set notification destination change type with the specified
integer value.
|
static SetNotificationDestinationChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SetNotificationDestinationChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetNotificationDestinationChangeType REPLACE
public static final SetNotificationDestinationChangeType ADD
public static final SetNotificationDestinationChangeType DELETE
public static SetNotificationDestinationChangeType[] values()
for (SetNotificationDestinationChangeType c : SetNotificationDestinationChangeType.values()) System.out.println(c);
public static SetNotificationDestinationChangeType 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()
public static SetNotificationDestinationChangeType valueOf(int intValue)
intValue
- The integer value for the change type to retrieve.null
if there is no change
type with the specified integer value.public static SetNotificationDestinationChangeType forName(java.lang.String name)
name
- The name of the set notification destination change type to
retrieve. It must not be null
.null
if no such type is defined.