public interface NameFactory
NameFactory
...Name create(String namespaceURI, String localName) throws IllegalArgumentException
Name
with the given namespace URI and
local part and validates the given parameters.namespaceURI
- namespace urilocalName
- local partIllegalArgumentException
- if namespaceURI
or
localName
is invalid.Name create(String nameString) throws IllegalArgumentException
Name
holding the value of the specified
string. The string must be in the format returned by the
Name.toString()
method, i.e.
{namespaceURI}localName
nameString
- a String
containing the Name
representation to be parsed.Name
represented by the argumentIllegalArgumentException
- if the specified string can not be parsed
as a Name
.Copyright © 2004-2020 The Apache Software Foundation. All Rights Reserved.