Enum GitHubPREnv

    • Enum Constant Detail

      • TRIGGER_SENDER_AUTHOR

        public static final GitHubPREnv TRIGGER_SENDER_AUTHOR
      • TRIGGER_SENDER_EMAIL

        public static final GitHubPREnv TRIGGER_SENDER_EMAIL
      • COMMIT_AUTHOR_NAME

        public static final GitHubPREnv COMMIT_AUTHOR_NAME
      • COMMIT_AUTHOR_EMAIL

        public static final GitHubPREnv COMMIT_AUTHOR_EMAIL
      • TARGET_BRANCH

        public static final GitHubPREnv TARGET_BRANCH
      • SOURCE_BRANCH

        public static final GitHubPREnv SOURCE_BRANCH
      • AUTHOR_EMAIL

        public static final GitHubPREnv AUTHOR_EMAIL
      • SHORT_DESC

        public static final GitHubPREnv SHORT_DESC
      • SOURCE_REPO_OWNER

        public static final GitHubPREnv SOURCE_REPO_OWNER
      • CAUSE_SKIP

        public static final GitHubPREnv CAUSE_SKIP
      • COMMENT_AUTHOR_NAME

        public static final GitHubPREnv COMMENT_AUTHOR_NAME
      • COMMENT_AUTHOR_EMAIL

        public static final GitHubPREnv COMMENT_AUTHOR_EMAIL
      • COMMENT_BODY

        public static final GitHubPREnv COMMENT_BODY
      • COMMENT_BODY_MATCH

        public static final GitHubPREnv COMMENT_BODY_MATCH
    • Method Detail

      • values

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

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