org.lobobrowser.ua
Enum NavigatorEventType
java.lang.Object
java.lang.Enum<NavigatorEventType>
org.lobobrowser.ua.NavigatorEventType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<NavigatorEventType>
public enum NavigatorEventType
- extends java.lang.Enum<NavigatorEventType>
|
Method Summary |
static NavigatorEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NavigatorEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
DOCUMENT_ACCESSED
public static final NavigatorEventType DOCUMENT_ACCESSED
DOCUMENT_RENDERING
public static final NavigatorEventType DOCUMENT_RENDERING
PROGRESS_UPDATED
public static final NavigatorEventType PROGRESS_UPDATED
ERROR_OCCURRED
public static final NavigatorEventType ERROR_OCCURRED
STATUS_UPDATED
public static final NavigatorEventType STATUS_UPDATED
DEFAULT_STATUS_UPDATED
public static final NavigatorEventType DEFAULT_STATUS_UPDATED
values
public static NavigatorEventType[] 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 (NavigatorEventType c : NavigatorEventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static NavigatorEventType 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
Copyright © 2005, 2006, 2007 The Lobo Project. All Rights Reserved.
[Lobo Home]