Searched defs:years (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationYearMonthImpl.java62 * @param years of this <code>Duration</code>
66 * If years, months parameters are all <code>null</code>. Or if any
71 BigInteger years,
74 super(isPositive, years, months, null, null, null, null);
95 final int years,
99 wrap(years),
131 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
169 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of years and months.
197 years = BigInteger.valueOf((long) getYears()).add(BigInteger.ONE);
69 DurationYearMonthImpl( boolean isPositive, BigInteger years, BigInteger months) argument
93 DurationYearMonthImpl( final boolean isPositive, final int years, final int months) argument
H A DDatatypeFactoryImpl.java135 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
149 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
158 * @param years of this <code>Duration</code>
171 * @see #newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days,
176 final BigInteger years,
185 years,
280 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of years and months.
315 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
390 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
174 newDuration( final boolean isPositive, final BigInteger years, final BigInteger months, final BigInteger days, final BigInteger hours, final BigInteger minutes, final BigDecimal seconds) argument
H A DDurationImpl.java44 * which consists of six fields (years, months, days, hours,
162 protected BigInteger years; field in class:DurationImpl
208 if ((years == null || years.signum() == 0)
233 * @param years of this <code>Duration</code>
241 * If years, months, days, hours, minutes and
247 BigInteger years,
254 this.years = years;
264 if (years
245 DurationImpl( boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds) argument
327 DurationImpl( final boolean isPositive, final int years, final int months, final int days, final int hours, final int minutes, final int seconds) argument
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeFactory.java240 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
251 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
262 * @param years of this <code>Duration</code>
272 * <code>Duration</code>: if all the fields (years, months, ...) are null or
278 final BigInteger years,
287 * specifying the <code>Duration</code> as isPositive, years, months, days, hours, minutes, seconds.</p>
293 * @param years of this <code>Duration</code>
307 * BigInteger years,
316 final int years,
323 // years ma
276 newDuration( final boolean isPositive, final BigInteger years, final BigInteger months, final BigInteger days, final BigInteger hours, final BigInteger minutes, final BigDecimal seconds) argument
314 newDuration( final boolean isPositive, final int years, final int months, final int days, final int hours, final int minutes, final int seconds) argument
[all...]

Completed in 34 milliseconds