Searched defs:lexicalRepresentation (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationYearMonthImpl.java167 * @param lexicalRepresentation Lexical representation of a duration.
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.
171 * @throws NullPointerException If <code>lexicalRepresentation</code> is <code>null</code>.
173 protected DurationYearMonthImpl(String lexicalRepresentation) { argument
174 super(lexicalRepresentation);
179 + " lexical representation of \"" + lexicalRepresentation
H A DDurationDayTimeImpl.java99 * @param lexicalRepresentation Lexical representation of a duration.
101 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of days and time.
103 * @throws NullPointerException If <code>lexicalRepresentation</code> is <code>null</code>.
105 protected DurationDayTimeImpl(String lexicalRepresentation) { argument
106 super(lexicalRepresentation);
111 + " lexical representation of \"" + lexicalRepresentation
H A DDatatypeFactoryImpl.java94 * @param lexicalRepresentation <code>String</code> representation of a <code>Duration</code>.
96 * @return New <code>Duration</code> created from parsing the <code>lexicalRepresentation</code>.
98 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code>.
100 * @throws NullPointerException if <code>lexicalRepresentation</code> is <code>null</code>.
102 public Duration newDuration(final String lexicalRepresentation) { argument
104 return new DurationImpl(lexicalRepresentation);
276 * @param lexicalRepresentation Lexical representation of a duration.
278 * @return New <code>Duration</code> created using the specified <code>lexicalRepresentation</code>.
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.
282 * @throws NullPointerException If <code>lexicalRepresentation</cod
284 newDurationYearMonth( final String lexicalRepresentation) argument
354 newDurationDayTime(final String lexicalRepresentation) argument
534 newXMLGregorianCalendar(final String lexicalRepresentation) argument
[all...]
H A DDurationImpl.java443 * indicated by the lexicalRepresentation parameter.
445 * @param lexicalRepresentation
453 protected DurationImpl(String lexicalRepresentation) argument
457 final String s = lexicalRepresentation;
463 if (lexicalRepresentation == null) {
H A DXMLGregorianCalendarImpl.java350 * value indicated by the lexicalRepresentation parameter.
352 * @param lexicalRepresentation
361 protected XMLGregorianCalendarImpl(String lexicalRepresentation) argument
366 String lexRep = lexicalRepresentation;
393 // gMonthDay, --MM-DD(z?), (or invalid lexicalRepresentation)
429 // Date or invalid lexicalRepresentation
440 DatatypeMessageFormatter.formatMessage(null, "InvalidXGCRepresentation", new Object[]{lexicalRepresentation})
441 //"\"" + lexicalRepresentation + "\" is not a valid representation of an XML Gregorian Calendar value."
1737 * indicated by the lexicalRepresentation parameter.</p>
1739 * @param lexicalRepresentation Lexica
1749 parse(String lexicalRepresentation) argument
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeFactory.java202 * @param lexicalRepresentation <code>String</code> representation of a <code>Duration</code>.
204 * @return New <code>Duration</code> created from parsing the <code>lexicalRepresentation</code>.
206 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code>.
208 * @throws NullPointerException if <code>lexicalRepresentation</code> is <code>null</code>.
210 public abstract Duration newDuration(final String lexicalRepresentation); argument
368 * @param lexicalRepresentation Lexical representation of a duration.
370 * @return New <code>Duration</code> created using the specified <code>lexicalRepresentation</code>.
372 * @throws IllegalArgumentException If <code>lexicalRepresentation</code> is not a valid representation of a <code>Duration</code> expressed only in terms of days and time.
374 * @throws NullPointerException If <code>lexicalRepresentation</code> is <code>null</code>.
376 public Duration newDurationDayTime(final String lexicalRepresentation) { argument
553 newDurationYearMonth( final String lexicalRepresentation) argument
732 newXMLGregorianCalendar(final String lexicalRepresentation) argument
[all...]

Completed in 43 milliseconds