Interface MountPointSchemaNode
-
- All Superinterfaces:
AddedByUsesAware
,DocumentedNode
,DocumentedNode.WithStatus
,SchemaNode
,UnknownSchemaNode
@Beta public interface MountPointSchemaNode extends UnknownSchemaNode
Represents the effect of 'mount-point' extension, as defined in RFC8528, being attached to a SchemaNode.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode
DocumentedNode.WithStatus
-
-
Method Summary
Static Methods Modifier and Type Method Description static @NonNull Stream<MountPointSchemaNode>
streamAll(ContainerSchemaNode schema)
Find all mount points defined in aContainerSchemaNode
.static @NonNull Stream<MountPointSchemaNode>
streamAll(ListSchemaNode schema)
Find all mount points defined in aListSchemaNode
.-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.AddedByUsesAware
isAddedByUses
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode
getDescription, getReference, getUnknownSchemaNodes
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode.WithStatus
getStatus
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.SchemaNode
getPath, getQName
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode
getExtensionDefinition, getNodeParameter, getNodeType, isAddedByAugmentation
-
-
-
-
Method Detail
-
streamAll
static @NonNull Stream<MountPointSchemaNode> streamAll(ContainerSchemaNode schema)
Find all mount points defined in aContainerSchemaNode
.- Parameters:
schema
- ContainerSchemaNode to search- Returns:
MountPointSchemaNode
s defined the ContainerSchemaNode.- Throws:
NullPointerException
- if context is null
-
streamAll
static @NonNull Stream<MountPointSchemaNode> streamAll(ListSchemaNode schema)
Find all mount points defined in aListSchemaNode
.- Parameters:
schema
- ListSchemaNode to search- Returns:
MountPointSchemaNode
s defined the ListSchemaNode.- Throws:
NullPointerException
- if context is null
-
-