public static enum LispCall.JlinkerState extends java.lang.Enum<LispCall.JlinkerState>
Introduced in version 7001002.
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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 are declared.
|
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().
public static 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 namejava.lang.NullPointerException
- if the argument is null