Class TimeDV
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.TypeValidator
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.TimeDV
-
public class TimeDV extends AbstractDateTimeDV
Validator for <time> datatype (W3C Schema Datatypes)- Version:
- $Id$
- Author:
- Elena Litani, Gopal Sharma, SUN Microsystem Inc.
-
-
Field Summary
-
Fields inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV
datatypeFactory, DAY, MONTH, YEAR
-
Fields inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.TypeValidator
EQUAL, GREATER_THAN, INDETERMINATE, LESS_THAN
-
-
Constructor Summary
Constructors Constructor Description TimeDV()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
dateToString(org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV.DateTimeData date)
Converts time object representation to StringObject
getActualValue(String content, ValidationContext context)
Convert a string to a compiled formprotected XMLGregorianCalendar
getXMLGregorianCalendar(org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV.DateTimeData date)
protected org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV.DateTimeData
parse(String str)
Parses, validates and computes normalized version of time object-
Methods inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV
append, append, append2, compare, compareDates, compareOrder, findUTCSign, fQuotient, fQuotient, getAllowedFacets, getDate, getDuration, getFractionalSecondsAsBigDecimal, getTime, getTimeZone, getYearMonth, indexOf, isIdentical, isNextCharUTCSign, maxDayInMonthFor, mod, modulo, normalize, parseInt, parseIntYear, parseSecond, parseTimeZone, resetDateObj, saveUnnormalized, validateDateTime
-
Methods inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.TypeValidator
checkExtraRules, getDataLength, getDigit, getFractionDigits, getTotalDigits, isDigit
-
-
-
-
Method Detail
-
getActualValue
public Object getActualValue(String content, ValidationContext context) throws InvalidDatatypeValueException
Convert a string to a compiled form- Specified by:
getActualValue
in classTypeValidator
- Parameters:
content
- The lexical representation of time- Returns:
- a valid and normalized time object
- Throws:
InvalidDatatypeValueException
-
parse
protected org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV.DateTimeData parse(String str) throws SchemaDateTimeException
Parses, validates and computes normalized version of time object- Parameters:
str
- The lexical representation of time object hh:mm:ss.sss with possible time zone Z or (-),(+)hh:mm Pattern: "(\\d\\d):(\\d\\d):(\\d\\d)(\\.(\\d)*)?(Z|(([-+])(\\d\\d)(:(\\d\\d))?))?")- Returns:
- normalized time representation
- Throws:
SchemaDateTimeException
- Invalid lexical representation
-
dateToString
protected String dateToString(org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV.DateTimeData date)
Converts time object representation to String- Overrides:
dateToString
in classAbstractDateTimeDV
- Parameters:
date
- time object- Returns:
- lexical representation of time: hh:mm:ss.sss with an optional time zone sign
-
getXMLGregorianCalendar
protected XMLGregorianCalendar getXMLGregorianCalendar(org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.dv.xs.AbstractDateTimeDV.DateTimeData date)
- Overrides:
getXMLGregorianCalendar
in classAbstractDateTimeDV
-
-