Enum RC.STATUS

    • Enum Constant Detail

      • WARNING_TEMPORARILY

        public static final RC.STATUS WARNING_TEMPORARILY
      • CREATED

        public static final RC.STATUS CREATED
      • ACCEPTED

        public static final RC.STATUS ACCEPTED
      • WARNING

        public static final RC.STATUS WARNING
      • ACCESS_DENIED

        public static final RC.STATUS ACCESS_DENIED
      • FORBIDDEN

        public static final RC.STATUS FORBIDDEN
      • NOT_FOUND

        public static final RC.STATUS NOT_FOUND
      • CONFLICT

        public static final RC.STATUS CONFLICT
      • TOO_LARGE

        public static final RC.STATUS TOO_LARGE
      • SYNTAX_ERROR

        public static final RC.STATUS SYNTAX_ERROR
      • TEAPOT

        public static final RC.STATUS TEAPOT
      • INTERNAL_ERROR

        public static final RC.STATUS INTERNAL_ERROR
      • NOT_SUPPORTED

        public static final RC.STATUS NOT_SUPPORTED
      • TIMEOUT

        public static final RC.STATUS TIMEOUT
      • TOO_DEEP

        public static final RC.STATUS TOO_DEEP
    • Method Detail

      • values

        public static RC.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 (RC.STATUS c : RC.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 RC.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
      • rc

        public int rc()