public enum DeviceType extends Enum<DeviceType>
Java class for DeviceType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DeviceType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="None"/>
<enumeration value="Computers"/>
<enumeration value="Smartphones"/>
<enumeration value="Tablets"/>
<enumeration value="All"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL |
COMPUTERS |
NONE |
SMARTPHONES |
TABLETS |
| Modifier and Type | Method and Description |
|---|---|
static DeviceType |
fromValue(String v) |
String |
value() |
static DeviceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceType NONE
public static final DeviceType COMPUTERS
public static final DeviceType SMARTPHONES
public static final DeviceType TABLETS
public static final DeviceType ALL
public static DeviceType[] values()
for (DeviceType c : DeviceType.values()) System.out.println(c);
public static DeviceType 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 nullpublic String value()
public static DeviceType fromValue(String v)
Copyright © 2024. All rights reserved.