public enum LogicalDatastoreType extends Enum<LogicalDatastoreType>
Enum Constant and Description |
---|
CONFIGURATION
Logical Datastore representing configuration state of the system and it's components.
|
OPERATIONAL
Logical datastore representing operational state of the system and it's components.
|
Modifier and Type | Method and Description |
---|---|
static LogicalDatastoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalDatastoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalDatastoreType OPERATIONAL
It is defined to:
config=true
and config=false
nodespublic static final LogicalDatastoreType CONFIGURATION
It is defined to:
config=true
nodespublic static LogicalDatastoreType[] values()
for (LogicalDatastoreType c : LogicalDatastoreType.values()) System.out.println(c);
public static LogicalDatastoreType 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 © 2019 OpenDaylight. All rights reserved.