Enum StatementOrigin
- java.lang.Object
-
- java.lang.Enum<StatementOrigin>
-
- org.opendaylight.yangtools.yang.model.api.meta.StatementOrigin
-
- All Implemented Interfaces:
Serializable
,Comparable<StatementOrigin>
public enum StatementOrigin extends Enum<StatementOrigin>
Enumeration of possible origins of a statement.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTEXT
Statement was inferred to exist based on effective semantics of some other statement.DECLARATION
Statement was explicitly declared by author of the supplied model, such as spelled out in the text of a YANG module.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatementOrigin
valueOf(String name)
Returns the enum constant of this type with the specified name.static StatementOrigin[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DECLARATION
public static final StatementOrigin DECLARATION
Statement was explicitly declared by author of the supplied model, such as spelled out in the text of a YANG module.
-
CONTEXT
public static final StatementOrigin CONTEXT
Statement was inferred to exist based on effective semantics of some other statement. As an example, therpc
statement implies presence of bothinput
andoutput
statements, even when they are not explicitly declared.
-
-
Method Detail
-
values
public static StatementOrigin[] 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 (StatementOrigin c : StatementOrigin.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatementOrigin 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
-
-