/// <summary> /// Creates a new ResultSequence consisting of the extractable gMonthDay in /// the supplied ResultSequence /// </summary> /// <param name="arg"> /// The ResultSequence from which the gMonthDay is to be extracted </param> /// <returns> New ResultSequence consisting of the supplied month and day </returns> /// <exception cref="DynamicError"> </exception> //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET: //ORIGINAL LINE: public org.eclipse.wst.xml.xpath2.api.ResultSequence constructor(org.eclipse.wst.xml.xpath2.api.ResultSequence arg) throws org.eclipse.wst.xml.xpath2.processor.DynamicError public override ResultSequence constructor(ResultSequence arg) { if (arg.empty()) { return(ResultBuffer.EMPTY); } AnyAtomicType aat = (AnyAtomicType)arg.first(); if (aat is NumericType || aat is XSDuration || aat is XSTime || isGDataType(aat) || aat is XSBoolean || aat is XSBase64Binary || aat is XSHexBinary || aat is XSAnyURI) { throw DynamicError.invalidType(); } if (!isCastable(aat)) { throw DynamicError.cant_cast(null); } XSGMonthDay val = castGMonthDay(aat); if (val == null) { throw DynamicError.cant_cast(null); } return(val); }
private XSGMonthDay castGMonthDay(AnyAtomicType aat) { if (aat is XSGMonthDay) { XSGMonthDay gmd = (XSGMonthDay)aat; return(new XSGMonthDay(gmd.calendar(), gmd.tz())); } if (aat is XSDate) { XSDate date = (XSDate)aat; return(new XSGMonthDay(date.calendar(), date.tz())); } if (aat is XSDateTime) { XSDateTime dateTime = (XSDateTime)aat; return(new XSGMonthDay(dateTime.calendar(), dateTime.tz())); } return(parse_gMonthDay(aat.StringValue)); }
/// <summary> /// Equality comparison between this and the supplied representation. This /// representation must be of type XSGMonthDay /// </summary> /// <param name="arg"> /// The XSGMonthDay to compare with </param> /// <returns> True if the two representations are of the same month and day. /// False otherwise </returns> /// <exception cref="DynamicError"> </exception> //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET: //ORIGINAL LINE: public boolean eq(AnyType arg, org.eclipse.wst.xml.xpath2.api.DynamicContext dynamicContext) throws org.eclipse.wst.xml.xpath2.processor.DynamicError public virtual bool eq(AnyType arg, DynamicContext dynamicContext) { XSGMonthDay val = (XSGMonthDay)NumericType.get_single_type(arg, typeof(XSGMonthDay)); return(calendar().Equals(val.calendar())); }