Java XML QName Create createQName(String namespaceUri, String localPart, String prefix)

Here you can find the source of createQName(String namespaceUri, String localPart, String prefix)

Description

Creates a new QName with the given parameters.

License

Apache License

Parameter

Parameter Description
namespaceUri namespace URI of the <code>QName</code>
localPart local part of the <code>QName</code>
prefix prefix of the <code>QName</code>. May be ignored.

Return

the created QName

Declaration

public static QName createQName(String namespaceUri, String localPart, String prefix) 

Method Source Code


//package com.java2s;
/*//from w  ww.  java  2 s .  c  o m
 * Copyright 2005-2010 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.xml.namespace.QName;

public class Main {
    /** Indicates whether {@link QName} has a prefix. The first release of the class did not have this. */
    private static boolean qNameHasPrefix;

    /**
     * Creates a new <code>QName</code> with the given parameters. Sets the prefix if possible, i.e. if the
     * <code>QName(String, String, String)</code> constructor can be found. If this constructor is not available (as is
     * the case on older implementations of JAX-RPC), the prefix is ignored.
     *
     * @param namespaceUri namespace URI of the <code>QName</code>
     * @param localPart    local part of the <code>QName</code>
     * @param prefix       prefix of the <code>QName</code>. May be ignored.
     * @return the created <code>QName</code>
     * @see QName#QName(String,String,String)
     */
    public static QName createQName(String namespaceUri, String localPart, String prefix) {
        if (qNameHasPrefix) {
            return new QName(namespaceUri, localPart, prefix);
        } else {
            return new QName(namespaceUri, localPart);
        }
    }
}

Related

  1. convertJavaTypeToQName(Type type)
  2. convertStringsToQNames(List expandedQNames)
  3. convertStringToQName(String expandedQName)
  4. createQName(Node node)
  5. createQName(String localPart)
  6. createQName(String qnameString)
  7. createQName(String qualifiedName, Node node)
  8. createQNameWithCustomNamespace(String key)
  9. getEmptyQName()