Java XML QName isPrimitiveIdlType(QName idlType)

Here you can find the source of isPrimitiveIdlType(QName idlType)

Description

is Primitive Idl Type

License

Apache License

Declaration

public static boolean isPrimitiveIdlType(QName idlType) 

Method Source Code

//package com.java2s;
/**//from w  w w. j  av a2 s .  c  om
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you 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 java.util.HashMap;
import java.util.Map;
import javax.xml.namespace.QName;

public class Main {
    private static final Map<QName, QName> IDL_TO_SCHEMA_TYPES = new HashMap<QName, QName>();

    public static boolean isPrimitiveIdlType(QName idlType) {
        return IDL_TO_SCHEMA_TYPES.get(idlType) != null;
    }
}

Related

  1. hasQName(Node node, QName qname)
  2. isElementName(Element element, QName name)
  3. isEndElement(final XMLEvent event, final QName name)
  4. isEventStartOrEndElementWithMatchingName(XMLEvent event, QName elementName)
  5. isJAXBElement(Class declaredType, QName name, Class scope, Object value)
  6. isPrimitiveType(final QName elementType)
  7. isSameNamespace(QName q1, QName q2)
  8. isSameNamespaceAndDifferentPrefix(QName qName, Element element)
  9. isTagName(Element element, QName name)