Enum Hier.Type

  • All Implemented Interfaces:
    Serializable, Comparable<Hier.Type>
    Enclosing class:
    Hier

    public static enum Hier.Type
    extends Enum<Hier.Type>
    Enumeration is used to specify which hierarchy node this entity is bound to. RBAC Role, Admin Roles, User OU or Perm OU.
    • Enum Constant Detail

      • ROLE

        public static final Hier.Type ROLE
        RBAC Role data set
      • AROLE

        public static final Hier.Type AROLE
        Administrative Role data set
      • USER

        public static final Hier.Type USER
        User OU data set
      • PERM

        public static final Hier.Type PERM
        Permission OU data set
    • Method Detail

      • values

        public static Hier.Type[] 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 (Hier.Type c : Hier.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Hier.Type 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