protected static enum BmpSessionImpl.State extends Enum<BmpSessionImpl.State>
Enum Constant and Description |
---|
IDLE
Waiting for connection to be established.
|
INITIATED
The Initiation Messages has been received.
|
UP
The connection has been established.
|
Modifier and Type | Method and Description |
---|---|
static BmpSessionImpl.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BmpSessionImpl.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BmpSessionImpl.State IDLE
public static final BmpSessionImpl.State UP
public static final BmpSessionImpl.State INITIATED
public static BmpSessionImpl.State[] values()
for (BmpSessionImpl.State c : BmpSessionImpl.State.values()) System.out.println(c);
public static BmpSessionImpl.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.