Enum SubmitRecord.Status

    • Enum Constant Detail

      • NOT_READY

        public static final SubmitRecord.Status NOT_READY
        Something is preventing this change from being submitted.
      • FORCED

        public static final SubmitRecord.Status FORCED
        The change was submitted bypassing submit rules.
      • RULE_ERROR

        public static final SubmitRecord.Status RULE_ERROR
        A rule error caused by user misconfiguration.

        This status should only be used to signal that the user has misconfigured the submit rule. In case plugins encounter server exceptions while evaluating the rule, they should throw a RuntimeException such as IllegalStateException.

        Additional detail may be available in SubmitRecord.errorMessage.

    • Method Detail

      • values

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

        public static SubmitRecord.Status 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