com.dynamixsoftware.intentapi
Enum ResultType
java.lang.Object
java.lang.Enum<ResultType>
com.dynamixsoftware.intentapi.ResultType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ResultType>
public enum ResultType
- extends java.lang.Enum<ResultType>
Method Summary |
java.lang.String |
getMessage()
|
void |
setMessage(java.lang.String message)
|
static ResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
OK
public static final ResultType OK
CANCEL
public static final ResultType CANCEL
EMPTY
public static final ResultType EMPTY
ERROR_EXCEPTION
public static final ResultType ERROR_EXCEPTION
ERROR_ETHERNET
public static final ResultType ERROR_ETHERNET
ERROR_BLUETOOTH
public static final ResultType ERROR_BLUETOOTH
ERROR_CLOUD
public static final ResultType ERROR_CLOUD
ERROR_CLOUD_AUTHORIZATION_FAILED
public static final ResultType ERROR_CLOUD_AUTHORIZATION_FAILED
ERROR_SMB
public static final ResultType ERROR_SMB
ERROR_TRANSPORT
public static final ResultType ERROR_TRANSPORT
ERROR_DRIVER
public static final ResultType ERROR_DRIVER
ERROR_LIBRARY_PACK_NOT_INSTALLED
public static final ResultType ERROR_LIBRARY_PACK_NOT_INSTALLED
ERROR_LIBRARY_PACK_INSTALLATION
public static final ResultType ERROR_LIBRARY_PACK_INSTALLATION
ERROR_INTERNAL
public static final ResultType ERROR_INTERNAL
ERROR_UNAUTHORIZED
public static final ResultType ERROR_UNAUTHORIZED
ERROR_PRINTER_UNSUPPORTED
public static final ResultType ERROR_PRINTER_UNSUPPORTED
ERROR_PRINTER_NOT_INSTALLED
public static final ResultType ERROR_PRINTER_NOT_INSTALLED
ERROR_PRINTER_OFF_NETWORK_UNREACHABLE
public static final ResultType ERROR_PRINTER_OFF_NETWORK_UNREACHABLE
ERROR_OUT_OF_MEMORY_PAGE_SIZE_TOO_LARGE
public static final ResultType ERROR_OUT_OF_MEMORY_PAGE_SIZE_TOO_LARGE
ERROR_FREE_VERSION
public static final ResultType ERROR_FREE_VERSION
ERROR_LICENSE_CHECK
public static final ResultType ERROR_LICENSE_CHECK
values
public static ResultType[] 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 (ResultType c : ResultType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ResultType 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
setMessage
public void setMessage(java.lang.String message)
getMessage
public java.lang.String getMessage()