Enum ErrorDetails

    • Enum Constant Detail

      • THE_INPUTS_TO_THIS_REQUEST_ARE_INVALID

        public static final ErrorDetails THE_INPUTS_TO_THIS_REQUEST_ARE_INVALID
      • SERVICE_LIMITS_HAVE_BEEN_EXCEEDED

        public static final ErrorDetails SERVICE_LIMITS_HAVE_BEEN_EXCEEDED
      • MISSING_REQUIRED_PERMISSION_TO_PERFORM_THIS_REQUEST

        public static final ErrorDetails MISSING_REQUIRED_PERMISSION_TO_PERFORM_THIS_REQUEST
      • ONE_OR_MORE_INPUTS_TO_THIS_REQUEST_WERE_NOT_FOUND

        public static final ErrorDetails ONE_OR_MORE_INPUTS_TO_THIS_REQUEST_WERE_NOT_FOUND
      • THE_SYSTEM_TEMPORARILY_LACKS_SUFFICIENT_RESOURCES_TO_PROCESS_THE_REQUEST

        public static final ErrorDetails THE_SYSTEM_TEMPORARILY_LACKS_SUFFICIENT_RESOURCES_TO_PROCESS_THE_REQUEST
      • AN_INTERNAL_ERROR_HAS_OCCURRED

        public static final ErrorDetails AN_INTERNAL_ERROR_HAS_OCCURRED
      • A_USER_RECOVERABLE_ERROR_HAS_OCCURRED

        public static final ErrorDetails A_USER_RECOVERABLE_ERROR_HAS_OCCURRED
      • UNKNOWN_TO_SDK_VERSION

        public static final ErrorDetails UNKNOWN_TO_SDK_VERSION
    • Method Detail

      • values

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

        public static ErrorDetails 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
      • fromValue

        public static ErrorDetails fromValue​(String value)
        Use this in place of valueOf to convert the raw string returned by the service into the enum value.
        Parameters:
        value - real value
        Returns:
        ErrorDetails corresponding to the value