Package org.apache.velocity.tools.view
Enum UAParser.DeviceType
- java.lang.Object
-
- java.lang.Enum<UAParser.DeviceType>
-
- org.apache.velocity.tools.view.UAParser.DeviceType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UAParser.DeviceType>
- Enclosing class:
- UAParser
public static enum UAParser.DeviceType extends java.lang.Enum<UAParser.DeviceType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UAParser.DeviceTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UAParser.DeviceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final UAParser.DeviceType UNKNOWN
-
DESKTOP
public static final UAParser.DeviceType DESKTOP
-
MOBILE
public static final UAParser.DeviceType MOBILE
-
TABLET
public static final UAParser.DeviceType TABLET
-
TV
public static final UAParser.DeviceType TV
-
ROBOT
public static final UAParser.DeviceType ROBOT
-
-
Method Detail
-
values
public static UAParser.DeviceType[] 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 (UAParser.DeviceType c : UAParser.DeviceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UAParser.DeviceType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-