Here you can find the source of toDate(XMLGregorianCalendar date)
public static Date toDate(XMLGregorianCalendar date)
//package com.java2s; //License from project: Apache License import java.util.Date; import javax.xml.datatype.XMLGregorianCalendar; public class Main { public static Date toDate(XMLGregorianCalendar date) { return date.toGregorianCalendar().getTime(); }/*from ww w . j a v a 2 s. c o m*/ }