|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LispCall.JlinkerState>
com.franz.jlinker.LispCall.JlinkerState
public static enum LispCall.JlinkerState
This enum defines the constants that identify the states of a Jlinker connection.
Introduced in version 7001002.
Enum Constant Summary | |
---|---|
CONNECTING
A connection is being created but is not ready. |
|
DISCONNECTED
A connection was established and is now completely shut down. |
|
DISCONNECTING
A connection is being shut down. |
|
IDLE
A Jlinker connection has never been established. |
|
READY
A connection is ready. |
Method Summary | |
---|---|
static LispCall.JlinkerState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LispCall.JlinkerState[] |
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 LispCall.JlinkerState IDLE
It is possible to create a new connection with connect() or advertise().
public static final LispCall.JlinkerState CONNECTING
public static final LispCall.JlinkerState READY
This is the only state in which calls to Lisp can be made.
public static final LispCall.JlinkerState DISCONNECTING
public static final LispCall.JlinkerState DISCONNECTED
It is possible to create a new connection with connect() or advertise().
Method Detail |
---|
public static final LispCall.JlinkerState[] values()
for(LispCall.JlinkerState c : LispCall.JlinkerState.values()) System.out.println(c);
public static LispCall.JlinkerState 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 |