public enum DeviceRegistrationErrorCode extends Enum<DeviceRegistrationErrorCode>
Enum Constant and Description |
---|
BlankPassword
Blank Password
|
DeviceAlreadyExists
Device Already Exists
|
InterfaceDisabled
Interface Disabled
|
InternalError
Internal Error
|
InvalidParameterSyntax
Invalid Parameter Syntax
|
InvalidRequestFormat
Invalid Request Format
|
MissingDeviceUserNameOrPassword
Missing Device User Name or Password
|
Unknown
Unspecified or Unknown Error occurred
|
UnknownClientVersion
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 InterfaceDisabled
public static final DeviceRegistrationErrorCode InvalidRequestFormat
public static final DeviceRegistrationErrorCode UnknownClientVersion
public static final DeviceRegistrationErrorCode BlankPassword
public static final DeviceRegistrationErrorCode MissingDeviceUserNameOrPassword
public static final DeviceRegistrationErrorCode InvalidParameterSyntax
public static final DeviceRegistrationErrorCode InternalError
public static final DeviceRegistrationErrorCode DeviceAlreadyExists
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–2017. All rights reserved.