Enum Class EffectiveStmtCtx.Parent.EffectiveConfig
java.lang.Object
java.lang.Enum<EffectiveStmtCtx.Parent.EffectiveConfig>
org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Parent.EffectiveConfig
- All Implemented Interfaces:
Serializable
,Comparable<EffectiveStmtCtx.Parent.EffectiveConfig>
,Constable
- Enclosing interface:
- EffectiveStmtCtx.Parent
@Beta
public static enum EffectiveStmtCtx.Parent.EffectiveConfig
extends Enum<EffectiveStmtCtx.Parent.EffectiveConfig>
Effective
config
statement value.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWe have an effectiveconfig false
statement.We are in a context whereconfig
statements are ignored.We have an effectiveconfig true
statement.We are in a context whereconfig
is not determined, such as within agrouping
. -
Method Summary
Modifier and TypeMethodDescription@Nullable Boolean
Return this value as aBoolean
for use withDataSchemaNode.effectiveConfig()
.Returns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TRUE
We have an effectiveconfig true
statement. -
FALSE
We have an effectiveconfig false
statement. -
IGNORED
We are in a context whereconfig
statements are ignored. -
UNDETERMINED
We are in a context whereconfig
is not determined, such as within agrouping
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
asNullable
Return this value as aBoolean
for use withDataSchemaNode.effectiveConfig()
.- Returns:
- A boolean or null
-