|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QFtp.State>
com.trolltech.qt.network.QFtp.State
public static enum QFtp.State
This enum defines the connection state.
Constant | Value | Description |
---|---|---|
Unconnected | 0 | There is no connection to the host. |
HostLookup | 1 | A host name lookup is in progress. |
Connecting | 2 | An attempt to connect to the host is in progress. |
Connected | 3 | Connection to the host has been achieved. |
LoggedIn | 4 | Connection and user login have been achieved. |
Closing | 5 | The connection is closing down, but it is not yet closed. (The state will be Unconnected when the connection is closed.) |
Enum Constant Summary | |
---|---|
Closing
The connection is closing down, but it is not yet closed. |
|
Connected
Connection to the host has been achieved. |
|
Connecting
An attempt to connect to the host is in progress. |
|
HostLookup
A host name lookup is in progress. |
|
LoggedIn
Connection and user login have been achieved. |
|
Unconnected
There is no connection to the host. |
Method Summary | |
---|---|
static QFtp.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 QFtp.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QFtp.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 |
---|
public static final QFtp.State Unconnected
There is no connection to the host.
public static final QFtp.State HostLookup
A host name lookup is in progress.
public static final QFtp.State Connecting
An attempt to connect to the host is in progress.
public static final QFtp.State Connected
Connection to the host has been achieved.
public static final QFtp.State LoggedIn
Connection and user login have been achieved.
public static final QFtp.State Closing
The connection is closing down, but it is not yet closed. (The state will be Unconnected when the connection is closed.)
Method Detail |
---|
public static QFtp.State[] values()
for (QFtp.State c : QFtp.State.values()) System.out.println(c);
public static QFtp.State 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
java.lang.NullPointerException
- if the argument is nullpublic int value()
QtEnumerator
value
in interface QtEnumerator
public static QFtp.State resolve(int value)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |