| Enum Constant and Description | 
|---|
| DEVICE_NOT_FOUNDDevice not found. | 
| FORBIDDENIt was rejected by the camera state or request conditions. | 
| IMAGE_NOT_FOUNDThere is no specified image. | 
| INVALID_ARGUMENTInvalid parameter. | 
| INVALID_SETTINGInvalid value. | 
| NETWORK_ERRORNetwork error. | 
| NO_SPACENot enough space. | 
| UNKNOWN_VALUEUnknown value not supported. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ErrorCode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ErrorCode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ErrorCode NETWORK_ERROR
public static final ErrorCode DEVICE_NOT_FOUND
public static final ErrorCode IMAGE_NOT_FOUND
public static final ErrorCode INVALID_SETTING
public static final ErrorCode INVALID_ARGUMENT
public static final ErrorCode NO_SPACE
public static final ErrorCode FORBIDDEN
public static final ErrorCode UNKNOWN_VALUE
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null