org.directwebremoting.util
Enum UserAgent
java.lang.Object
java.lang.Enum<UserAgent>
org.directwebremoting.util.UserAgent
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<UserAgent>
public enum UserAgent
- extends java.lang.Enum<UserAgent>
This is simply a list of strings that pop-up in user-agent values, that we
may wish to switch on
- Author:
- Joe Walker [joe at getahead dot ltd dot uk]
|
Method Summary |
static UserAgent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static UserAgent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
IE
public static final UserAgent IE
Firefox
public static final UserAgent Firefox
Opera
public static final UserAgent Opera
Gecko
public static final UserAgent Gecko
AppleWebKit
public static final UserAgent AppleWebKit
Safari
public static final UserAgent Safari
values
public static UserAgent[] 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 (UserAgent c : UserAgent.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static UserAgent 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 name
java.lang.NullPointerException - if the argument is null