Enum Error

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Error>

    public enum Error
    extends java.lang.Enum<Error>
    • Enum Constant Detail

      • NO_ERROR

        public static final Error NO_ERROR
      • GENERAL_ERROR

        public static final Error GENERAL_ERROR
      • TIMEOUT

        public static final Error TIMEOUT
      • OVERLOAD

        public static final Error OVERLOAD
      • DESTINATION_UNKNOWN

        public static final Error DESTINATION_UNKNOWN
      • DESTINATION_UNREACHABLE

        public static final Error DESTINATION_UNREACHABLE
      • COMMAND_NOT_SUPPORTED

        public static final Error COMMAND_NOT_SUPPORTED
      • COMMAND_REJECTED

        public static final Error COMMAND_REJECTED
      • RESTRICTED_FUNCTION_COMBINATION_UNSUPPORTED

        public static final Error RESTRICTED_FUNCTION_COMBINATION_UNSUPPORTED
      • BINDING_NECESSARY

        public static final Error BINDING_NECESSARY
    • Method Detail

      • values

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

        public static Error valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null