Enum SpaceRight

    • Enum Constant Detail

      • APPLICATIONS_CREATE

        public static final SpaceRight APPLICATIONS_CREATE
      • APPLICATIONS_VIEW_SECRETS

        public static final SpaceRight APPLICATIONS_VIEW_SECRETS
      • CHANNEL_POST_MESSAGES

        public static final SpaceRight CHANNEL_POST_MESSAGES
      • PROJECT_VIEW

        public static final SpaceRight PROJECT_VIEW
      • PROJECT_CODE_REVIEW_VIEW

        public static final SpaceRight PROJECT_CODE_REVIEW_VIEW
      • PROJECT_CODE_REVIEW_POST_COMMENTS

        public static final SpaceRight PROJECT_CODE_REVIEW_POST_COMMENTS
      • VCS_REPOSITORY_COMMIT_STATUS_PUSH

        public static final SpaceRight VCS_REPOSITORY_COMMIT_STATUS_PUSH
      • VCS_REPOSITORY_READ

        public static final SpaceRight VCS_REPOSITORY_READ
      • VCS_REPOSITORY_WRITE

        public static final SpaceRight VCS_REPOSITORY_WRITE
    • Method Detail

      • values

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

        public static SpaceRight 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
      • getCode

        @NotNull
        public String getCode()
      • getName

        @NotNull
        public String getName()