The XML Schema spec defines a lot of built in data types http://www.w3.org/TR/xmlschema-2/#built-in-datatypes is there Java library which can answer questions about weather a value is a a specific data type. Something along the lines.
if(XSDValidator.isXSDDate("2012-06-12") == false) {
// return error
}
Update: The use case for this is not in the context of XML but rather in situations where I have a a string that I want to conform to a one of the XSD types and I want a standard way to check that it conforms. For example the string could be a value I extract from an incoming JSON request, or from a URL or any other place ... etc.