public static enum NamespaceBehaviour.StorageNodeType extends Enum<NamespaceBehaviour.StorageNodeType>
| Enum Constant and Description |
|---|
GLOBAL
Global storage, visible from all sources.
|
ROOT_STATEMENT_LOCAL
Storage of the root statement of a particular source.
|
SOURCE_LOCAL_SPECIAL
Storage of the root statement of a particular source and any sources it is importing.
|
STATEMENT_LOCAL
Storage of a single statement.
|
| Modifier and Type | Method and Description |
|---|---|
static NamespaceBehaviour.StorageNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NamespaceBehaviour.StorageNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamespaceBehaviour.StorageNodeType GLOBAL
public static final NamespaceBehaviour.StorageNodeType SOURCE_LOCAL_SPECIAL
public static final NamespaceBehaviour.StorageNodeType STATEMENT_LOCAL
public static final NamespaceBehaviour.StorageNodeType ROOT_STATEMENT_LOCAL
public static NamespaceBehaviour.StorageNodeType[] values()
for (NamespaceBehaviour.StorageNodeType c : NamespaceBehaviour.StorageNodeType.values()) System.out.println(c);
public static NamespaceBehaviour.StorageNodeType 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.