Uses of Class
org.apache.jackrabbit.webdav.xml.Namespace
Packages that use Namespace
Package
Description
-
Uses of Namespace in org.apache.jackrabbit.webdav
Fields in org.apache.jackrabbit.webdav declared as Namespace -
Uses of Namespace in org.apache.jackrabbit.webdav.property
Methods in org.apache.jackrabbit.webdav.property that return NamespaceModifier and TypeMethodDescriptionDavPropertyName.getNamespace()
Return the namespace of thisDavPropertyName
.Methods in org.apache.jackrabbit.webdav.property with parameters of type NamespaceModifier and TypeMethodDescriptionboolean
Creates a DavPropertyName from the given parameters and add it to this set.static DavPropertyName
Creates a newDavPropertyName
with the given name and Namespace.DavProperty<?>
Retrieves the property with the specifiedname
andnamespace
.Returns an iterator over all those property in this set, that have the indicatednamespace
.static int
ResourceType.registerResourceType
(String name, Namespace namespace) Register an additional resource typeDavProperty<?>
Removes the property with the specifiedname
andnamespace
from this set.Constructors in org.apache.jackrabbit.webdav.property with parameters of type NamespaceModifierConstructorDescriptionDefaultDavProperty
(String name, T value, Namespace namespace) Creates a new non-protected WebDAV property with the given namespace, name and value.DefaultDavProperty
(String name, T value, Namespace namespace, boolean isInvisibleInAllprop) Creates a new WebDAV property with the given namespace, name and value. -
Uses of Namespace in org.apache.jackrabbit.webdav.xml
Fields in org.apache.jackrabbit.webdav.xml declared as NamespaceModifier and TypeFieldDescriptionstatic final Namespace
Namespace.EMPTY_NAMESPACE
static final Namespace
Namespace.XML_NAMESPACE
static final Namespace
Namespace.XMLNS_NAMESPACE
Methods in org.apache.jackrabbit.webdav.xml that return NamespaceModifier and TypeMethodDescriptionstatic Namespace
DomUtil.getNamespace
(Element element) Build a Namespace from the prefix and uri retrieved from the given element.static Namespace
Namespace.getNamespace
(String uri) static Namespace
Namespace.getNamespace
(String prefix, String uri) Methods in org.apache.jackrabbit.webdav.xml with parameters of type NamespaceModifier and TypeMethodDescriptionstatic Element
DomUtil.addChildElement
(Element parent, String localName, Namespace namespace) Add a new child element with the given local name and namespace to the specified parent.static Element
DomUtil.addChildElement
(Element parent, String localName, Namespace namespace, String text) Add a new child element with the given local name and namespace to the specified parent.static Element
DomUtil.addChildElement
(Node parent, String localName, Namespace namespace) Add a new child element with the given local name and namespace to the specified parent.static Element
DomUtil.createElement
(Document factory, String localName, Namespace namespace) Create a new DOM element with the specified local name and namespace.static Element
DomUtil.createElement
(Document factory, String localName, Namespace namespace, String text) Create a new DOM element with the specified local name and namespace and add the specified text as Text node to it.static String
DomUtil.getAttribute
(Element parent, String localName, Namespace namespace) Returns the value of the named attribute of the current element.static Element
DomUtil.getChildElement
(Node parent, String childLocalName, Namespace childNamespace) Returns the first child element that matches the given local name and namespace.static ElementIterator
DomUtil.getChildren
(Element parent, String childLocalName, Namespace childNamespace) Returns aElementIterator
containing all child elements of the given parent node that match the given local name and namespace.static String
DomUtil.getChildText
(Element parent, String childLocalName, Namespace childNamespace) CallsDomUtil.getText(Element)
on the first child element that matches the given local name and namespace.static String
DomUtil.getChildTextTrim
(Element parent, String childLocalName, Namespace childNamespace) CallsDomUtil.getTextTrim(Element)
on the first child element that matches the given local name and namespace.static String
DomUtil.getExpandedName
(String localName, Namespace namespace) Returns a string representation of the name of a DOM node consisting of "{" + namespace uri + "}" + localName.static String
DomUtil.getPrefixedName
(String localName, Namespace namespace) Return the qualified name of a DOM node consisting of namespace prefix + ":" + local name.static String
DomUtil.getQualifiedName
(String localName, Namespace namespace) Deprecated.As of 2.0.static boolean
DomUtil.hasChildElement
(Node parent, String childLocalName, Namespace childNamespace) Returns true if the given parent node has a child element that matches the specified local name and namespace.static boolean
Returns true if the specified node matches the required names.static void
DomUtil.setAttribute
(Element element, String attrLocalName, Namespace attrNamespace, String attrValue) Add an attribute node to the given element.Constructors in org.apache.jackrabbit.webdav.xml with parameters of type NamespaceModifierConstructorDescriptionElementIterator
(Element parent, String localName, Namespace namespace) Create a new instance ofElementIterator
with the given parent element.