Enum Class BindingDataContainerCodecTreeNode.ChildAddressabilitySummary
java.lang.Object
java.lang.Enum<BindingDataContainerCodecTreeNode.ChildAddressabilitySummary>
org.opendaylight.yangtools.binding.data.codec.api.BindingDataContainerCodecTreeNode.ChildAddressabilitySummary
- All Implemented Interfaces:
Serializable
,Comparable<BindingDataContainerCodecTreeNode.ChildAddressabilitySummary>
,Constable
- Enclosing interface:
BindingDataContainerCodecTreeNode<T extends DataContainer>
public static enum BindingDataContainerCodecTreeNode.ChildAddressabilitySummary
extends Enum<BindingDataContainerCodecTreeNode.ChildAddressabilitySummary>
Enumeration of possible addressability attribute of all children.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll children are addressable.Mixed children, some are addressable and some are not.All children are non-addressable, including the case when this node does not have any children. -
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
-
ADDRESSABLE
All children are addressable. -
UNADDRESSABLE
All children are non-addressable, including the case when this node does not have any children. -
MIXED
Mixed children, some are addressable and some are not.
-
-
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
-