public static enum AbstractPCEPSessionNegotiator.State extends Enum<AbstractPCEPSessionNegotiator.State>
Enum Constant and Description |
---|
FINISHED
Negotiation has completed.
|
IDLE
Negotiation has not begun.
|
KEEP_WAIT
Waiting for the peer's KEEPALIVE message.
|
OPEN_WAIT
Waiting for the peer's OPEN message.
|
START_TLS_WAIT
Waiting for the peer's StartTLS message
|
Modifier and Type | Method and Description |
---|---|
static AbstractPCEPSessionNegotiator.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractPCEPSessionNegotiator.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractPCEPSessionNegotiator.State IDLE
public static final AbstractPCEPSessionNegotiator.State START_TLS_WAIT
public static final AbstractPCEPSessionNegotiator.State OPEN_WAIT
public static final AbstractPCEPSessionNegotiator.State KEEP_WAIT
public static final AbstractPCEPSessionNegotiator.State FINISHED
public static AbstractPCEPSessionNegotiator.State[] values()
for (AbstractPCEPSessionNegotiator.State c : AbstractPCEPSessionNegotiator.State.values()) System.out.println(c);
public static AbstractPCEPSessionNegotiator.State valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018 OpenDaylight. All rights reserved.