Enum Flag

    • Enum Constant Detail

      • RESOLVE_INHERITANCE

        public static final Flag RESOLVE_INHERITANCE
        If parent groups should be resolved
      • INCLUDE_NODES_WITHOUT_SERVER_CONTEXT

        public static final Flag INCLUDE_NODES_WITHOUT_SERVER_CONTEXT
        If global or non-server-specific nodes should be applied
      • INCLUDE_NODES_WITHOUT_WORLD_CONTEXT

        public static final Flag INCLUDE_NODES_WITHOUT_WORLD_CONTEXT
        If global or non-world-specific nodes should be applied
      • APPLY_INHERITANCE_NODES_WITHOUT_SERVER_CONTEXT

        public static final Flag APPLY_INHERITANCE_NODES_WITHOUT_SERVER_CONTEXT
        If global or non-server-specific group memberships should be applied
      • APPLY_INHERITANCE_NODES_WITHOUT_WORLD_CONTEXT

        public static final Flag APPLY_INHERITANCE_NODES_WITHOUT_WORLD_CONTEXT
        If global or non-world-specific group memberships should be applied
    • Method Detail

      • values

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

        public static Flag 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