Enum SuppressType

java.lang.Object
java.lang.Enum<SuppressType>
com.unboundid.ldap.sdk.unboundidds.controls.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.
  • Enum Constant Details

    • LAST_ACCESS_TIME

      public static final SuppressType LAST_ACCESS_TIME
      The value that indicates that last access time updates should be suppressed.
    • LAST_LOGIN_TIME

      public static final SuppressType LAST_LOGIN_TIME
      The value that indicates that last login time updates should be suppressed.
    • LAST_LOGIN_IP

      public static final SuppressType LAST_LOGIN_IP
      The value that indicates that last login IP address updates should be suppressed.
    • LASTMOD

      public static final SuppressType LASTMOD
      The value that indicates that lastmod updates (creatorsName, createTimestamp, modifiersName, modifyTimestamp) should be suppressed.
  • Method Details

    • values

      public static SuppressType[] 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

      public static SuppressType valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • intValue

      public int intValue()
      Retrieves the integer value for this suppress type value.
      Returns:
      The integer value for this suppress type value.
    • valueOf

      @Nullable public static SuppressType valueOf(int intValue)
      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 null if 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 be null.
      Returns:
      The requested suppress type, or null if no such type is defined.