Uses of Class
org.opendaylight.yangtools.yang.common.XMLNamespace
-
Packages that use XMLNamespace Package Description org.opendaylight.yangtools.rfc8528.data.api org.opendaylight.yangtools.yang.common org.opendaylight.yangtools.yang.data.codec.gson org.opendaylight.yangtools.yang.data.util org.opendaylight.yangtools.yang.model.api Definition of structures and DOM like API of effected YANG schema.org.opendaylight.yangtools.yang.model.ri.stmt org.opendaylight.yangtools.yang.model.ri.stmt.impl.decl org.opendaylight.yangtools.yang.model.spi org.opendaylight.yangtools.yang.model.util Utility classes and implementations for concepts defined in yang-model-api.org.opendaylight.yangtools.yang.parser.rfc7950.stmt.meta Package holding wiring towardsRFC7950Reactors
, or more broadly towards the reactor implementation.org.opendaylight.yangtools.yang.parser.spi.source Provides API necessary for the processing of statement sources. -
-
Uses of XMLNamespace in org.opendaylight.yangtools.rfc8528.data.api
Fields in org.opendaylight.yangtools.rfc8528.data.api declared as XMLNamespace Modifier and Type Field Description static XMLNamespace
YangLibraryConstants. MODULE_NAMESPACE
The namespace assigned toietf-yang-library
. -
Uses of XMLNamespace in org.opendaylight.yangtools.yang.common
Fields in org.opendaylight.yangtools.yang.common declared as XMLNamespace Modifier and Type Field Description static XMLNamespace
YangConstants. NETCONF_NAMESPACE
NETCONF protocol elements' namespace, as defined in RFC4741 section 3.1, in String format.static XMLNamespace
YangConstants. RFC6020_YANG_NAMESPACE
YANG namespace, as defined in https://tools.ietf.org/html/rfc6020#section-14, in URI format.static XMLNamespace
YangConstants. RFC6020_YIN_NAMESPACE
YIN namespace, as defined in https://tools.ietf.org/html/rfc6020#section-14, in URI format.Methods in org.opendaylight.yangtools.yang.common that return XMLNamespace Modifier and Type Method Description @NonNull XMLNamespace
QName. getNamespace()
Returns XMLNamespace assigned to the YANG module.@NonNull XMLNamespace
QNameModule. getNamespace()
Returns the namespace of the module which is specified as argument of YANG Modulenamespace
keyword.@NonNull XMLNamespace
XMLNamespace. intern()
Return an interned reference to a equivalent XMLNamespace.static @NonNull XMLNamespace
XMLNamespace. of(String namespace)
Methods in org.opendaylight.yangtools.yang.common with parameters of type XMLNamespace Modifier and Type Method Description int
XMLNamespace. compareTo(XMLNamespace o)
static @NonNull QName
QName. create(XMLNamespace namespace, @Nullable Revision revision, String localName)
Creates new QName.static @NonNull QName
QName. create(XMLNamespace namespace, String localName)
Creates new QName.static @NonNull QName
QName. create(XMLNamespace namespace, Optional<Revision> revision, String localName)
Creates new QName.static @NonNull QNameModule
QNameModule. create(XMLNamespace namespace)
Create a new QName module instance with specified namespace and no revision.static @NonNull QNameModule
QNameModule. create(XMLNamespace namespace, @Nullable Revision revision)
Create a new QName module instance with specified namespace/revision.static @NonNull QNameModule
QNameModule. create(XMLNamespace namespace, Optional<Revision> revision)
Create a new QName module instance with specified namespace/revision. -
Uses of XMLNamespace in org.opendaylight.yangtools.yang.data.codec.gson
Methods in org.opendaylight.yangtools.yang.data.codec.gson with parameters of type XMLNamespace Modifier and Type Method Description static NormalizedNodeStreamWriter
JSONNormalizedNodeStreamWriter. createExclusiveWriter(JSONCodecFactory codecFactory, EffectiveStatementInference rootNode, XMLNamespace initialNs, com.google.gson.stream.JsonWriter jsonWriter)
Create a new stream writer, which writes to the specified output stream.static NormalizedNodeStreamWriter
JSONNormalizedNodeStreamWriter. createExclusiveWriter(JSONCodecFactory codecFactory, SchemaPath path, XMLNamespace initialNs, com.google.gson.stream.JsonWriter jsonWriter)
Create a new stream writer, which writes to the specified output stream.static NormalizedNodeStreamWriter
JSONNormalizedNodeStreamWriter. createExclusiveWriter(JSONCodecFactory codecFactory, SchemaNodeIdentifier.Absolute path, XMLNamespace initialNs, com.google.gson.stream.JsonWriter jsonWriter)
Create a new stream writer, which writes to the specified output stream.static NormalizedNodeStreamWriter
JSONNormalizedNodeStreamWriter. createNestedWriter(JSONCodecFactory codecFactory, EffectiveStatementInference rootNode, XMLNamespace initialNs, com.google.gson.stream.JsonWriter jsonWriter)
Create a new stream writer, which writes to the specified output stream.static NormalizedNodeStreamWriter
JSONNormalizedNodeStreamWriter. createNestedWriter(JSONCodecFactory codecFactory, SchemaPath path, XMLNamespace initialNs, com.google.gson.stream.JsonWriter jsonWriter)
Create a new stream writer, which writes to the specified output stream.static NormalizedNodeStreamWriter
JSONNormalizedNodeStreamWriter. createNestedWriter(JSONCodecFactory codecFactory, SchemaNodeIdentifier.Absolute path, XMLNamespace initialNs, com.google.gson.stream.JsonWriter jsonWriter)
Create a new stream writer, which writes to the specified output stream. -
Uses of XMLNamespace in org.opendaylight.yangtools.yang.data.util
Methods in org.opendaylight.yangtools.yang.data.util with parameters of type XMLNamespace Modifier and Type Method Description static Deque<DataSchemaNode>
ParserStreamUtils. findSchemaNodeByNameAndNamespace(DataSchemaNode dataSchemaNode, String childName, XMLNamespace namespace)
Returns stack of schema nodes via which it was necessary to pass to get schema node with specifiedchildName
andnamespace
.protected String
ModuleStringIdentityrefCodec. prefixForNamespace(XMLNamespace namespace)
-
Uses of XMLNamespace in org.opendaylight.yangtools.yang.model.api
Methods in org.opendaylight.yangtools.yang.model.api that return XMLNamespace Modifier and Type Method Description default @NonNull XMLNamespace
QNameModuleAware. getNamespace()
Methods in org.opendaylight.yangtools.yang.model.api with parameters of type XMLNamespace Modifier and Type Method Description default Optional<Module>
SchemaContext. findModule(@NonNull XMLNamespace namespace)
Returns module instance (from the context) with specified namespace and no revision.default Optional<Module>
SchemaContext. findModule(@NonNull XMLNamespace namespace, @NonNull Optional<Revision> revision)
Returns module instance (from the context) with specified namespace and revision.default Optional<Module>
SchemaContext. findModule(@NonNull XMLNamespace namespace, @Nullable Revision revision)
Returns module instance (from the context) with specified namespace and revision.default @NonNull Collection<? extends @NonNull Module>
SchemaContext. findModules(XMLNamespace namespace)
Returns module instance (from the context) with concrete namespace.default @NonNull Collection<@NonNull ModuleEffectiveStatement>
EffectiveModelContext. findModuleStatements(XMLNamespace namespace)
Returns module instance (from the context) with concrete namespace. -
Uses of XMLNamespace in org.opendaylight.yangtools.yang.model.ri.stmt
Methods in org.opendaylight.yangtools.yang.model.ri.stmt with parameters of type XMLNamespace Modifier and Type Method Description static NamespaceStatement
DeclaredStatements. createNamespace(XMLNamespace argument, ImmutableList<? extends DeclaredStatement<?>> substatements)
-
Uses of XMLNamespace in org.opendaylight.yangtools.yang.model.ri.stmt.impl.decl
Constructors in org.opendaylight.yangtools.yang.model.ri.stmt.impl.decl with parameters of type XMLNamespace Constructor Description EmptyNamespaceStatement(XMLNamespace argument)
RegularNamespaceStatement(XMLNamespace argument, ImmutableList<? extends DeclaredStatement<?>> substatements)
-
Uses of XMLNamespace in org.opendaylight.yangtools.yang.model.spi
Methods in org.opendaylight.yangtools.yang.model.spi that return types with arguments of type XMLNamespace Modifier and Type Method Description protected abstract SetMultimap<XMLNamespace,Module>
AbstractSchemaContext. getNamespaceToModules()
Returns the namespace-to-module mapping.protected SetMultimap<XMLNamespace,Module>
SimpleSchemaContext. getNamespaceToModules()
Methods in org.opendaylight.yangtools.yang.model.spi with parameters of type XMLNamespace Modifier and Type Method Description Collection<? extends Module>
AbstractSchemaContext. findModules(XMLNamespace namespace)
-
Uses of XMLNamespace in org.opendaylight.yangtools.yang.model.util
Methods in org.opendaylight.yangtools.yang.model.util that return types with arguments of type XMLNamespace Modifier and Type Method Description protected SetMultimap<XMLNamespace,Module>
FilteringSchemaContextProxy. getNamespaceToModules()
-
Uses of XMLNamespace in org.opendaylight.yangtools.yang.parser.rfc7950.stmt.meta
Methods in org.opendaylight.yangtools.yang.parser.rfc7950.stmt.meta that return XMLNamespace Modifier and Type Method Description XMLNamespace
NamespaceStatementSupport. parseArgumentValue(StmtContext<?,?,?> ctx, String value)
Method parameters in org.opendaylight.yangtools.yang.parser.rfc7950.stmt.meta with type arguments of type XMLNamespace Modifier and Type Method Description protected NamespaceStatement
NamespaceStatementSupport. createDeclared(@NonNull StmtContext<XMLNamespace,NamespaceStatement,?> ctx, ImmutableList<? extends DeclaredStatement<?>> substatements)
protected NamespaceEffectiveStatement
NamespaceStatementSupport. createEffective(EffectiveStmtCtx.Current<XMLNamespace,NamespaceStatement> stmt, ImmutableList<? extends EffectiveStatement<?,?>> substatements)
-
Uses of XMLNamespace in org.opendaylight.yangtools.yang.parser.spi.source
Fields in org.opendaylight.yangtools.yang.parser.spi.source with type parameters of type XMLNamespace Modifier and Type Field Description static NamespaceBehaviour<String,XMLNamespace,@NonNull ImpPrefixToNamespace>
ImpPrefixToNamespace. BEHAVIOUR
static NamespaceBehaviour<String,XMLNamespace,@NonNull ModuleNameToNamespace>
ModuleNameToNamespace. BEHAVIOUR
Methods in org.opendaylight.yangtools.yang.parser.spi.source with parameters of type XMLNamespace Modifier and Type Method Description @Nullable StatementDefinition
QNameToStatementDefinition. getByNamespaceAndLocalName(@NonNull XMLNamespace namespace, @NonNull String localName)
Returns StatementDefinition with specified namespace and localName.StatementDefinition
QNameToStatementDefinitionMap. getByNamespaceAndLocalName(XMLNamespace namespace, String localName)
-