Package model
Enum CreateDevice.ModelEnum
- java.lang.Object
-
- java.lang.Enum<CreateDevice.ModelEnum>
-
- model.CreateDevice.ModelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CreateDevice.ModelEnum>
- Enclosing class:
- CreateDevice
public static enum CreateDevice.ModelEnum extends Enum<CreateDevice.ModelEnum>
The model type of the device.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCreateDevice.ModelEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateDevice.ModelEnumfromValue(String value)StringgetRawValue()StringgetValue()voidsetRawValue(String s)StringtoString()static CreateDevice.ModelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CreateDevice.ModelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BBPOS
public static final CreateDevice.ModelEnum BBPOS
-
MX915
public static final CreateDevice.ModelEnum MX915
-
MX925
public static final CreateDevice.ModelEnum MX925
-
IPP320
public static final CreateDevice.ModelEnum IPP320
-
IPP350
public static final CreateDevice.ModelEnum IPP350
-
ISC250
public static final CreateDevice.ModelEnum ISC250
-
ISC480
public static final CreateDevice.ModelEnum ISC480
-
ISMP4
public static final CreateDevice.ModelEnum ISMP4
-
ANDROID
public static final CreateDevice.ModelEnum ANDROID
-
LANE_3000
public static final CreateDevice.ModelEnum LANE_3000
-
LINK_2500
public static final CreateDevice.ModelEnum LINK_2500
-
UNKNOWN_DEFAULT
public static final CreateDevice.ModelEnum UNKNOWN_DEFAULT
-
-
Method Detail
-
values
public static CreateDevice.ModelEnum[] 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 (CreateDevice.ModelEnum c : CreateDevice.ModelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateDevice.ModelEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<CreateDevice.ModelEnum>
-
setRawValue
public void setRawValue(String s)
-
getRawValue
public String getRawValue()
-
fromValue
public static CreateDevice.ModelEnum fromValue(String value)
-
-