Interface UnknownSchemaNode
-
- All Superinterfaces:
AddedByUsesAware
,CopyableNode
,DocumentedNode
,DocumentedNode.WithStatus
,EffectiveStatementEquivalent<UnknownEffectiveStatement<?,?>>
,SchemaNode
- All Known Subinterfaces:
AliasSchemaNode
,AnnotationSchemaNode
,DefaultDenyAllSchemaNode
,DefaultDenyWriteSchemaNode
,DefValSchemaNode
,DisplayHintSchemaNode
,EffectiveStatementMixins.UnknownSchemaNodeMixin<A,D>
,GetFilterElementAttributesSchemaNode
,ImpliedSchemaNode
,MaxAccessSchemaNode
,MountPointSchemaNode
,OidSchemaNode
,OpenConfigHashedValueSchemaNode
,SubIdSchemaNode
,YangDataSchemaNode
- All Known Implementing Classes:
UnknownEffectiveStatementBase
public interface UnknownSchemaNode extends SchemaNode, CopyableNode, EffectiveStatementEquivalent<UnknownEffectiveStatement<?,?>>
Contains the methods for getting the details about the unknown node.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode
DocumentedNode.WithStatus
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ExtensionDefinition
getExtensionDefinition()
Deprecated, for removal: This API element is subject to removal in a future version.This method is can cause cyclic dependencies in the object graph.String
getNodeParameter()
Returns name of the unknown node.QName
getNodeType()
Returns QName instance with the name of the unknown node.-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.AddedByUsesAware
isAddedByUses
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.CopyableNode
isAugmenting
-
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.EffectiveStatementEquivalent
asEffectiveStatement
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.SchemaNode
getPath, getQName
-
-
-
-
Method Detail
-
getNodeType
QName getNodeType()
Returns QName instance with the name of the unknown node. This corresponds toSchemaNode.getQName()
of theextension
statement which defined it.- Returns:
- QName with name the name of the unknown node.
-
getNodeParameter
String getNodeParameter()
Returns name of the unknown node.- Returns:
- string with the name of unknown node.
-
getExtensionDefinition
@Deprecated(forRemoval=true, since="7.0.8") ExtensionDefinition getExtensionDefinition()
Deprecated, for removal: This API element is subject to removal in a future version.This method is can cause cyclic dependencies in the object graph. UseSchemaContext.getExtensions()
withgetNodeType()
instead.Get extension definition which identifies this node.- Returns:
- extension definition if exists, null otherwise
-
-