Enum SDSet.SDType

  • All Implemented Interfaces:
    Serializable, Comparable<SDSet.SDType>
    Enclosing class:
    SDSet

    public static enum SDSet.SDType
    extends Enum<SDSet.SDType>
    enum for SSD or DSD data sets. Both nodes will be stored in the same LDAP container but use different object classes. SDType determines if 'ftSSDSet' or 'ftDSDSet' object class is used.
    • Enum Constant Detail

      • STATIC

        public static final SDSet.SDType STATIC
        Static Separation of Duty data set.
      • DYNAMIC

        public static final SDSet.SDType DYNAMIC
        Dynamic Separation of Duty data set.
    • Method Detail

      • values

        public static SDSet.SDType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SDSet.SDType c : SDSet.SDType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SDSet.SDType 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