Enum StatementSource
- java.lang.Object
-
- java.lang.Enum<StatementSource>
-
- org.opendaylight.yangtools.yang.model.api.meta.StatementSource
-
- All Implemented Interfaces:
Serializable
,Comparable<StatementSource>
public enum StatementSource extends Enum<StatementSource>
Origin of statement. Represents origin of statement - if it was explicitly present in model representation or if it was inferred from context.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTEXT
Statement was derived from context of YANG model / statement and represents effective model.DECLARATION
Statement was explicitly declared by author of the supplied model.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatementSource
valueOf(String name)
Returns the enum constant of this type with the specified name.static StatementSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DECLARATION
public static final StatementSource DECLARATION
Statement was explicitly declared by author of the supplied model.
-
CONTEXT
public static final StatementSource CONTEXT
Statement was derived from context of YANG model / statement and represents effective model.Effective context nodes are derived from applicable
DECLARATION
statements by interpreting their semantic meaning in context of current statement.
-
-
Method Detail
-
values
public static StatementSource[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StatementSource c : StatementSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatementSource valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-