public enum DeviceRegistrationErrorCode extends Enum<DeviceRegistrationErrorCode>
Enum Constant and Description |
---|
BLANK_PASSWORD
Blank Password
|
DEVICE_ALREADY_EXISTS
Device Already Exists
|
INTERFACE_DISABLED
Interface Disabled
|
INTERNAL_ERROR
Internal Error
|
INVALID_PARAMETER_SYNTAX
Invalid Parameter Syntax
|
INVALID_REQUEST_FORMAT
Invalid Request Format
|
MISSING_DEVICE_USER_NAME_OR_PASSWORD
Missing Device User Name or Password
|
UNKNOWN
Unspecified or Unknown Error occurred
|
UNKNOWN_CLIENT_VERSION
Unknown Client Version
|
Modifier and Type | Method and Description |
---|---|
static DeviceRegistrationErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceRegistrationErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceRegistrationErrorCode UNKNOWN
public static final DeviceRegistrationErrorCode INTERFACE_DISABLED
public static final DeviceRegistrationErrorCode INVALID_REQUEST_FORMAT
public static final DeviceRegistrationErrorCode UNKNOWN_CLIENT_VERSION
public static final DeviceRegistrationErrorCode BLANK_PASSWORD
public static final DeviceRegistrationErrorCode MISSING_DEVICE_USER_NAME_OR_PASSWORD
public static final DeviceRegistrationErrorCode INVALID_PARAMETER_SYNTAX
public static final DeviceRegistrationErrorCode INTERNAL_ERROR
public static final DeviceRegistrationErrorCode DEVICE_ALREADY_EXISTS
public static DeviceRegistrationErrorCode[] values()
for (DeviceRegistrationErrorCode c : DeviceRegistrationErrorCode.values()) System.out.println(c);
public static DeviceRegistrationErrorCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2019. All rights reserved.