public enum ContextChainState extends Enum<ContextChainState>
Enum Constant and Description |
---|
CLOSED
Context chain is closed.
|
UNDEFINED
Context chain is undefined.
|
WORKING_MASTER
Context chain is working as MASTER.
|
WORKING_SLAVE
Context chain is working as SLAVE, initial gathering already done.
|
Modifier and Type | Method and Description |
---|---|
static ContextChainState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContextChainState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextChainState UNDEFINED
public static final ContextChainState WORKING_MASTER
public static final ContextChainState WORKING_SLAVE
public static final ContextChainState CLOSED
public static ContextChainState[] values()
for (ContextChainState c : ContextChainState.values()) System.out.println(c);
public static ContextChainState 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.