Enum Class ValidationBundlesNamespace.ValidationBundleType
java.lang.Object
java.lang.Enum<ValidationBundlesNamespace.ValidationBundleType>
org.opendaylight.yangtools.yang.parser.spi.validation.ValidationBundlesNamespace.ValidationBundleType
- All Implemented Interfaces:
Serializable,Comparable<ValidationBundlesNamespace.ValidationBundleType>,Constable
- Enclosing interface:
- ValidationBundlesNamespace
public static enum ValidationBundlesNamespace.ValidationBundleType
extends Enum<ValidationBundlesNamespace.ValidationBundleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhether a node is suitable target for augment operation.Whether a case shorthand can be created for a node.Whether a node is data node.Whether a node is suitable refine substatement.Whether a node is suitable target for refine operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns 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
-
SUPPORTED_REFINE_SUBSTATEMENTS
Whether a node is suitable refine substatement. -
SUPPORTED_REFINE_TARGETS
Whether a node is suitable target for refine operation. -
SUPPORTED_AUGMENT_TARGETS
Whether a node is suitable target for augment operation. -
SUPPORTED_CASE_SHORTHANDS
Whether a case shorthand can be created for a node. -
SUPPORTED_DATA_NODES
Whether a node is data node.
-
-
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
-