- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for fromXmlString (0.07 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
* @param xml the input xml string * @return the parsed object * @throws XmlReaderException if an error occurs during the parsing * @see #toXmlString(Object) */ @Nonnull default T fromXmlString(@Nonnull String xml) throws XmlReaderException { return read(new StringReader(xml)); } /** * Simply converts the given content to an xml string. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPluginXmlFactory.java
return new DefaultPluginXmlFactory().fromXmlString(xml); } /** * Simply converts the given content to an xml string. * * @param content the object to convert * @return the xml string representation * @throws XmlWriterException if an error occurs during the transformation * @see #fromXmlString(String) */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0)