org.zwobble.mammoth.internal.xml.XmlElementLike Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mammoth Show documentation
Show all versions of mammoth Show documentation
Convert Word documents to simple and clean HTML
package org.zwobble.mammoth.internal.xml;
import java.util.List;
import java.util.Optional;
public interface XmlElementLike {
boolean hasChild(String name);
Optional findChild(String name);
XmlElementLike findChildOrEmpty(String name);
Optional getAttributeOrNone(String name);
List getChildren();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy