Package org.geotools.xml

Examples of org.geotools.xml.XmlConverterFactory$XmlConverter


        assertXpathEvaluatesTo("0", "count(//csw:SearchResults/*)", d);
    }

    private void assertGMLTimestamp(String timeStamp) throws Exception {
        assertNotNull(timeStamp);
        Calendar cal = new XmlConverterFactory()
                .createConverter(String.class, Calendar.class, null).convert(timeStamp,
                        Calendar.class);
        assertNotNull(cal);
        assertEquals(TimeZone.getTimeZone("GMT"), cal.getTimeZone());
    }
View Full Code Here

TOP

Related Classes of org.geotools.xml.XmlConverterFactory$XmlConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.