Here you can find the source of getTypeFromQName(final QName name)
Parameter | Description |
---|---|
name | A XML QName. |
public static Class getTypeFromQName(final QName name)
//package com.java2s; /*/*from www .j av a 2s . c o m*/ * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2009-2016, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ import java.util.HashMap; import java.util.Map; import javax.xml.namespace.QName; public class Main { private static final Map<String, Class> CLASS_BINDING = new HashMap<>(); /** * Return a primitive Class from the specified XML QName (extracted from an xsd file). * * @param name A XML QName. * @return A Class. */ public static Class getTypeFromQName(final QName name) { if (name != null) { final Class result = CLASS_BINDING.get(name.getLocalPart()); if (result == null) { throw new IllegalArgumentException("unexpected type:" + name); } return result; } return null; } }