public static enum BindingCodecTreeNode.ChildAddressabilitySummary extends Enum<BindingCodecTreeNode.ChildAddressabilitySummary>
Enum Constant and Description |
---|
ADDRESSABLE
All children are addressable.
|
MIXED
Mixed children, some are addressable and some are not.
|
UNADDRESSABLE
All children are non-addressable, including the case when this node does not have any children.
|
Modifier and Type | Method and Description |
---|---|
static BindingCodecTreeNode.ChildAddressabilitySummary |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingCodecTreeNode.ChildAddressabilitySummary[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingCodecTreeNode.ChildAddressabilitySummary ADDRESSABLE
public static final BindingCodecTreeNode.ChildAddressabilitySummary UNADDRESSABLE
public static final BindingCodecTreeNode.ChildAddressabilitySummary MIXED
public static BindingCodecTreeNode.ChildAddressabilitySummary[] values()
for (BindingCodecTreeNode.ChildAddressabilitySummary c : BindingCodecTreeNode.ChildAddressabilitySummary.values()) System.out.println(c);
public static BindingCodecTreeNode.ChildAddressabilitySummary valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 OpenDaylight. All rights reserved.