FileDocCategorySizeDatePackage
YearMonthDV.javaAPI DocJava SE 5 API4954Fri Aug 26 14:55:48 BST 2005com.sun.org.apache.xerces.internal.impl.dv.xs

YearMonthDV

public class YearMonthDV extends AbstractDateTimeDV
Validator for datatype (W3C Schema Datatypes)
author
Elena Litani
author
Gopal Sharma, SUN Microsystem Inc.
version
$Id: YearMonthDV.java,v 1.7 2003/01/16 18:34:04 sandygao Exp $

Fields Summary
Constructors Summary
Methods Summary
protected java.lang.StringdateToString(int[] date)

        StringBuffer message = new StringBuffer(25);
        append(message, date[CY], 4);
        message.append('-");
        append(message, date[M], 2);
        append(message, (char)date[utc], 0);
        return message.toString();
    
public java.lang.ObjectgetActualValue(java.lang.String content, com.sun.org.apache.xerces.internal.impl.dv.ValidationContext context)
Convert a string to a compiled form

param
content The lexical representation of gYearMonth
return
a valid and normalized gYearMonth object

        try{
            return new DateTimeData(parse(content), this);
        } catch(Exception ex){
            throw new InvalidDatatypeValueException("cvc-datatype-valid.1.2.1", new Object[]{content, "gYearMonth"});
        }
    
protected int[]parse(java.lang.String str)
Parses, validates and computes normalized version of gYearMonth object

param
str The lexical representation of gYearMonth object CCYY-MM with possible time zone Z or (-),(+)hh:mm
param
date uninitialized date object
return
normalized date representation
exception
SchemaDateTimeException Invalid lexical representation

        int len = str.length();
        int[] date = new int[TOTAL_SIZE];
        int[] timeZone = new int[2];

        // get date
        int end = getYearMonth(str, 0, len, date);
        date[D] = DAY;
        parseTimeZone (str, end, len, date, timeZone);

        //validate and normalize

        validateDateTime(date, timeZone);

        if ( date[utc]!=0 && date[utc]!='Z" ) {
            normalize(date, timeZone);
        }
        return date;