Enum Right

    • Enum Constant Detail

      • VIEW

        public static final Right VIEW
      • UPDATE

        public static final Right UPDATE
      • DELETE

        public static final Right DELETE
      • SUBSCRIBE

        public static final Right SUBSCRIBE
      • COMMENT

        public static final Right COMMENT
      • RATE

        public static final Right RATE
      • SHARE

        public static final Right SHARE
      • INSTALL

        public static final Right INSTALL
      • ADD_APP

        public static final Right ADD_APP
      • ADD_ITEM

        public static final Right ADD_ITEM
      • ADD_FILE

        public static final Right ADD_FILE
      • ADD_TASK

        public static final Right ADD_TASK
      • ADD_SPACE

        public static final Right ADD_SPACE
      • ADD_STATUS

        public static final Right ADD_STATUS
      • ADD_CONVERSATION

        public static final Right ADD_CONVERSATION
      • REPLY

        public static final Right REPLY
      • ADD_FILTER

        public static final Right ADD_FILTER
      • ADD_WIDGET

        public static final Right ADD_WIDGET
      • STATISTICS

        public static final Right STATISTICS
      • ADD_CONTACT

        public static final Right ADD_CONTACT
      • ADD_HOOK

        public static final Right ADD_HOOK
      • ADD_ANSWER

        public static final Right ADD_ANSWER
      • ADD_QUESTION

        public static final Right ADD_QUESTION
      • ADD_MEETING

        public static final Right ADD_MEETING
      • GRANT

        public static final Right GRANT
      • DOWNLOAD

        public static final Right DOWNLOAD
    • Method Detail

      • values

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

        public static Right 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
      • getByName

        public static Right getByName​(String value)