Enum SuppressType
- All Implemented Interfaces:
Serializable,Comparable<SuppressType>,java.lang.constant.Constable
This enum defines the set of operational update types that may be suppressed
by the suppress operational attribute update request control.
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe value that indicates that last access time updates should be suppressed.The value that indicates that last login IP address updates should be suppressed.The value that indicates that last login time updates should be suppressed.The value that indicates that lastmod updates (creatorsName, createTimestamp, modifiersName, modifyTimestamp) should be suppressed. -
Method Summary
Modifier and TypeMethodDescriptionstatic SuppressTypeRetrieves the suppress type with the specified name.intintValue()Retrieves the integer value for this suppress type value.static SuppressTypevalueOf(int intValue) Retrieves the suppress type value for the provided integer value.static SuppressTypeReturns the enum constant of this type with the specified name.static SuppressType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LAST_ACCESS_TIME
The value that indicates that last access time updates should be suppressed. -
LAST_LOGIN_TIME
The value that indicates that last login time updates should be suppressed. -
LAST_LOGIN_IP
The value that indicates that last login IP address updates should be suppressed. -
LASTMOD
The value that indicates that lastmod updates (creatorsName, createTimestamp, modifiersName, modifyTimestamp) should be suppressed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
intValue
Retrieves the integer value for this suppress type value.- Returns:
- The integer value for this suppress type value.
-
valueOf
Retrieves the suppress type value for the provided integer value.- Parameters:
intValue- The integer value for the suppress type value to retrieve.- Returns:
- The suppress type value that corresponds to the provided integer
value, or
nullif there is no corresponding suppress type value.
-
forName
Retrieves the suppress type with the specified name.- Parameters:
name- The name of the suppress type to retrieve. It must not benull.- Returns:
- The requested suppress type, or
nullif no such type is defined.
-