Qt Jambi Home

com.trolltech.qt.network
Enum QHttp.State

java.lang.Object
  extended by java.lang.Enum<QHttp.State>
      extended by com.trolltech.qt.network.QHttp.State
All Implemented Interfaces:
QtEnumerator, java.io.Serializable, java.lang.Comparable<QHttp.State>
Enclosing class:
QHttp

public static enum QHttp.State
extends java.lang.Enum<QHttp.State>
implements QtEnumerator

This enum is used to specify the state the client is in.

ConstantValueDescription
Unconnected0There is no connection to the host.
HostLookup1A host name lookup is in progress.
Connecting2An attempt to connect to the host is in progress.
Sending3The client is sending its request to the server.
Reading4The client's request has been sent and the client is reading the server's response.
Connected5The connection to the host is open, but the client is neither sending a request, nor waiting for a response.
Closing6The connection is closing down, but is not yet closed. (The state will be Unconnected when the connection is closed.)

See Also:
stateChanged, state

Enum Constant Summary
Closing
          The connection is closing down, but is not yet closed.
Connected
          The connection to the host is open, but the client is neither sending a request, nor waiting for a response.
Connecting
          An attempt to connect to the host is in progress.
HostLookup
          A host name lookup is in progress.
Reading
          The client's request has been sent and the client is reading the server's response.
Sending
          The client is sending its request to the server.
Unconnected
          There is no connection to the host.
 
Method Summary
static QHttp.State resolve(int value)
           
 int value()
          This function should return an integer value for the enum values of the enumeration that implements this interface.
static QHttp.State valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static QHttp.State[] 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
 

Enum Constant Detail

Unconnected

public static final QHttp.State Unconnected

There is no connection to the host.


HostLookup

public static final QHttp.State HostLookup

A host name lookup is in progress.


Connecting

public static final QHttp.State Connecting

An attempt to connect to the host is in progress.


Sending

public static final QHttp.State Sending

The client is sending its request to the server.


Reading

public static final QHttp.State Reading

The client's request has been sent and the client is reading the server's response.


Connected

public static final QHttp.State Connected

The connection to the host is open, but the client is neither sending a request, nor waiting for a response.


Closing

public static final QHttp.State Closing

The connection is closing down, but is not yet closed. (The state will be Unconnected when the connection is closed.)

Method Detail

values

public static QHttp.State[] 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 (QHttp.State c : QHttp.State.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static QHttp.State 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

value

public int value()
Description copied from interface: QtEnumerator
This function should return an integer value for the enum values of the enumeration that implements this interface.

Specified by:
value in interface QtEnumerator

resolve

public static QHttp.State resolve(int value)

Qt Jambi Home