Enum PermissionMode

  • All Implemented Interfaces:
    Serializable, Comparable<PermissionMode>

    public enum PermissionMode
    extends Enum<PermissionMode>

    Java class for permissionMode.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="permissionMode">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="set"/>
         <enumeration value="read"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • SET

        public static final PermissionMode SET
        Determines if the current subject has the required permission, and applies it to the defining parent element. This means, if the permission is not present, the parent element will not be displayed.
      • READ

        public static final PermissionMode READ
        Reads, but does not apply, the required permission from the current subject. This means, even if the permission is missing, the parent element will be visible.
    • Method Detail

      • values

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

        public static PermissionMode 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
      • value

        public String value()