@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum SuppressType extends java.lang.Enum<SuppressType>
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.
Enum Constant and Description |
---|
LAST_ACCESS_TIME
The value that indicates that last access time updates should be
suppressed.
|
LAST_LOGIN_IP
The value that indicates that last login IP address updates should be
suppressed.
|
LAST_LOGIN_TIME
The value that indicates that last login time updates should be suppressed.
|
LASTMOD
The value that indicates that lastmod updates (creatorsName,
createTimestamp, modifiersName, modifyTimestamp) should be suppressed.
|
Modifier and Type | Method and Description |
---|---|
static SuppressType |
forName(java.lang.String name)
Retrieves the suppress type with the specified name.
|
int |
intValue()
Retrieves the integer value for this suppress type value.
|
static SuppressType |
valueOf(int intValue)
Retrieves the suppress type value for the provided integer value.
|
static SuppressType |
valueOf(java.lang.String name)
Returns 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.
|
public static final SuppressType LAST_ACCESS_TIME
public static final SuppressType LAST_LOGIN_TIME
public static final SuppressType LAST_LOGIN_IP
public static final SuppressType LASTMOD
public static SuppressType[] values()
for (SuppressType c : SuppressType.values()) System.out.println(c);
public static SuppressType 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 SuppressType valueOf(int intValue)
intValue
- The integer value for the suppress type value to
retrieve.null
if there is no corresponding suppress type
value.@Nullable public static SuppressType forName(@NotNull java.lang.String name)
name
- The name of the suppress type to retrieve. It must not be
null
.null
if no such type is
defined.