|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ProgressType>
org.lobobrowser.ua.ProgressType
public enum ProgressType
Enumeration with different the different types of request/response progress qualifiers.
NavigatorProgressEvent.getProgressType()| Enum Constant Summary | |
|---|---|
BUILDING
Additional processing of the document is being performed. |
|
CONNECTING
The client is attempting to connect to the server |
|
CONTENT_LOADING
Content is starting to load. |
|
DONE
All operations done. |
|
NONE
This is the initial state. |
|
SENDING
The client is sending POST data |
|
WAITING_FOR_RESPONSE
The client is waiting for a response from the server. |
|
| Method Summary | |
|---|---|
static ProgressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ProgressType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ProgressType NONE
public static final ProgressType CONNECTING
public static final ProgressType SENDING
public static final ProgressType WAITING_FOR_RESPONSE
public static final ProgressType CONTENT_LOADING
public static final ProgressType BUILDING
public static final ProgressType DONE
| Method Detail |
|---|
public static final ProgressType[] values()
for(ProgressType c : ProgressType.values())
System.out.println(c);
public static ProgressType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||