Examples of GDate


Examples of org.apache.xmlbeans.GDate

    public static GDateSpecification getGDateValue(CharSequence v,
                                                   int builtin_type_code)
    {
        GDateBuilder gDateBuilder = new GDateBuilder(v);
        gDateBuilder.setBuiltinTypeCode(builtin_type_code);
        GDate value = gDateBuilder.toGDate();
        return value;
    }
View Full Code Here

Examples of org.apache.xmlbeans.GDate

                    case SchemaType.BTC_G_YEAR:
                    case SchemaType.BTC_G_MONTH_DAY:
                    case SchemaType.BTC_G_DAY:
                    case SchemaType.BTC_G_MONTH:
                    {
                        GDate gd = ((SimpleValue)v).getGDateValue();
                        set_prepare();
                        set_GDate(gd);
                        break;
                    }
                    case SchemaType.BTC_STRING:
View Full Code Here

Examples of org.apache.xmlbeans.GDate

        case SchemaType.BTC_G_YEAR :
        case SchemaType.BTC_G_MONTH_DAY :
        case SchemaType.BTC_G_DAY :
        case SchemaType.BTC_G_MONTH :
        {
            GDate d = XmlDateImpl.validateLexical( value, type, _vc );

            if (d != null)
                XmlDateImpl.validateValue( d, type, _vc );

            _gdateValue = d;
View Full Code Here

Examples of org.apache.xmlbeans.GDate

                    case SchemaType.BTC_G_YEAR:
                    case SchemaType.BTC_G_MONTH_DAY:
                    case SchemaType.BTC_G_DAY:
                    case SchemaType.BTC_G_MONTH:
                    {
                        GDate gd = ((SimpleValue)v).getGDateValue();
                        set_prepare();
                        set_GDate(gd);
                        break;
                    }
                    case SchemaType.BTC_STRING:
View Full Code Here

Examples of org.apache.xmlbeans.GDate

  private String formatDate( SchemaType sType )
  {
    GDateBuilder gdateb = new GDateBuilder( new Date( 1000L * pick( 365 * 24 * 60 * 60 ) + ( 30L + pick( 20 ) ) * 365
        * 24 * 60 * 60 * 1000 ) );
    GDate min = null, max = null;

    // Find the min and the max according to the type
    switch( sType.getPrimitiveType().getBuiltinTypeCode() )
    {
    case SchemaType.BTC_DATE_TIME :
    {
      XmlDateTime x = ( XmlDateTime )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlDateTime )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlDateTime )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlDateTime )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    case SchemaType.BTC_TIME :
    {
      XmlTime x = ( XmlTime )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlTime )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlTime )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlTime )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    case SchemaType.BTC_DATE :
    {
      XmlDate x = ( XmlDate )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlDate )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlDate )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlDate )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    case SchemaType.BTC_G_YEAR_MONTH :
    {
      XmlGYearMonth x = ( XmlGYearMonth )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlGYearMonth )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlGYearMonth )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlGYearMonth )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    case SchemaType.BTC_G_YEAR :
    {
      XmlGYear x = ( XmlGYear )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlGYear )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlGYear )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlGYear )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    case SchemaType.BTC_G_MONTH_DAY :
    {
      XmlGMonthDay x = ( XmlGMonthDay )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlGMonthDay )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlGMonthDay )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlGMonthDay )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    case SchemaType.BTC_G_DAY :
    {
      XmlGDay x = ( XmlGDay )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlGDay )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlGDay )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlGDay )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    case SchemaType.BTC_G_MONTH :
    {
      XmlGMonth x = ( XmlGMonth )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
      if( x != null )
        min = x.getGDateValue();
      x = ( XmlGMonth )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
      if( x != null )
        if( min == null || min.compareToGDate( x.getGDateValue() ) <= 0 )
          min = x.getGDateValue();

      x = ( XmlGMonth )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
      if( x != null )
        max = x.getGDateValue();
      x = ( XmlGMonth )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
      if( x != null )
        if( max == null || max.compareToGDate( x.getGDateValue() ) >= 0 )
          max = x.getGDateValue();
      break;
    }
    }

    if( min != null && max == null )
    {
      if( min.compareToGDate( gdateb ) >= 0 )
      {
        // Reset the date to min + (1-8) hours
        Calendar c = gdateb.getCalendar();
        c.add( Calendar.HOUR_OF_DAY, pick( 8 ) );
        gdateb = new GDateBuilder( c );
      }
    }
    else if( min == null && max != null )
    {
      if( max.compareToGDate( gdateb ) <= 0 )
      {
        // Reset the date to max - (1-8) hours
        Calendar c = gdateb.getCalendar();
        c.add( Calendar.HOUR_OF_DAY, 0 - pick( 8 ) );
        gdateb = new GDateBuilder( c );
      }
    }
    else if( min != null && max != null )
    {
      if( min.compareToGDate( gdateb ) >= 0 || max.compareToGDate( gdateb ) <= 0 )
      {
        // Find a date between the two
        Calendar c = min.getCalendar();
        Calendar cmax = max.getCalendar();
        c.add( Calendar.HOUR_OF_DAY, 1 );
        if( c.after( cmax ) )
        {
          c.add( Calendar.HOUR_OF_DAY, -1 );
View Full Code Here

Examples of org.apache.xmlbeans.GDate

        case SchemaType.BTC_G_YEAR :
        case SchemaType.BTC_G_MONTH_DAY :
        case SchemaType.BTC_G_DAY :
        case SchemaType.BTC_G_MONTH :
        {
            GDate d = XmlDateImpl.validateLexical( value, type, _vc );

            if (d != null)
                XmlDateImpl.validateValue( d, type, _vc );

            _gdateValue = d;
View Full Code Here

Examples of org.apache.xmlbeans.GDate

                    case SchemaType.BTC_G_YEAR:
                    case SchemaType.BTC_G_MONTH_DAY:
                    case SchemaType.BTC_G_DAY:
                    case SchemaType.BTC_G_MONTH:
                    {
                        GDate gd = ((SimpleValue)v).getGDateValue();
                        set_prepare();
                        set_GDate(gd);
                        break;
                    }
                    case SchemaType.BTC_STRING:
View Full Code Here

Examples of org.apache.xmlbeans.GDate

    protected String compute_text(NamespaceManager nsm)
        { return _value == null ? "" : _value.toString(); }

    protected void set_text(String s)
    {
        GDate newVal;
        if (_validateOnSet())
            newVal = validateLexical(s, _schemaType, _voorVc);
        else
            newVal = lex(s, _schemaType, _voorVc);
View Full Code Here

Examples of org.apache.xmlbeans.GDate

        _value = newVal;
    }

    public static GDate lex(String v, SchemaType sType, ValidationContext context)
    {
        GDate date = null;
       
        try
        {
            date = new GDate(v);
        }
        catch (Exception e)
        {
            context.invalid("Date value is malformed: "+v);
        }

        if (date != null)
        {
            if (date.getBuiltinTypeCode() != sType.getPrimitiveType().getBuiltinTypeCode())
            {
                context.invalid("Date value is of wrong type: " + v);
                date = null;
            }
            else if (!date.isValid())
            {
                context.invalid("Date value is invalid: " + v);
                date = null;
            }
        }
View Full Code Here

Examples of org.apache.xmlbeans.GDate

    }

    public static GDate validateLexical(String v, SchemaType sType, ValidationContext context)
    {

        GDate date = lex(v, sType, context);

        if (date != null && sType.hasPatternFacet())
            if (!sType.matchPatternFacet(v))
                context.invalid("Date (' + v + ') does not match pattern for " + QNameHelper.readable(sType));
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.