| Package | Description |
|---|---|
| com.helger.xml.microdom | |
| com.helger.xml.microdom.convert | |
| com.helger.xml.microdom.util | |
| com.helger.xml.util.mime | |
| com.helger.xml.util.statistics | |
| com.helger.xml.util.thread |
| Modifier and Type | Class and Description |
|---|---|
class |
MicroElement
Default implementation of the
IMicroElement interface. |
| Modifier and Type | Method and Description |
|---|---|
default IMicroElement |
IMicroNode.appendElement(String sTagName)
Append an element without namespace to this node.
|
default IMicroElement |
IMicroNode.appendElement(String sNamespaceURI,
String sTagName)
Append an element with namespace to this node.
|
IMicroElement |
IMicroNode.findParentElement(Predicate<? super IMicroElement> aFilter) |
IMicroElement |
AbstractMicroNode.findParentElement(Predicate<? super IMicroElement> aFilter) |
IMicroElement |
MicroElement.getClone() |
IMicroElement |
IMicroElement.getClone() |
IMicroElement |
MicroDocument.getDocumentElement() |
IMicroElement |
IMicroDocument.getDocumentElement() |
default IMicroElement |
IMicroElement.getFirstChildElement()
Get the first child element of this element.
|
IMicroElement |
MicroElement.getFirstChildElement(Predicate<? super IMicroElement> aFilter) |
IMicroElement |
IMicroElement.getFirstChildElement(Predicate<? super IMicroElement> aFilter) |
default IMicroElement |
IMicroElement.getFirstChildElement(String sTagName)
Get the first child element with the given tag name.
|
default IMicroElement |
IMicroElement.getFirstChildElement(String sNamespaceURI,
String sLocalName)
Get the first child element with the given tag name and the given
namespace.
|
default IMicroElement |
IMicroNode.getParentElementWithName(String sTagName) |
default IMicroElement |
IMicroNode.getParentElementWithName(String sNamespaceURI,
String sTagName) |
| Modifier and Type | Method and Description |
|---|---|
static com.helger.commons.functional.IPredicate<? super IMicroElement> |
IMicroElement.filterName(String sTagOrLocalName) |
static com.helger.commons.functional.IPredicate<? super IMicroElement> |
IMicroElement.filterNamespaceURI(String sNamespaceURI) |
static com.helger.commons.functional.IPredicate<? super IMicroElement> |
IMicroElement.filterNamespaceURIAndName(String sNamespaceURI,
String sTagOrLocalName) |
default com.helger.commons.collection.impl.ICommonsList<IMicroElement> |
IMicroElement.getAllChildElements()
Get a list of all direct child elements.
|
default com.helger.commons.collection.impl.ICommonsList<IMicroElement> |
IMicroElement.getAllChildElements(Predicate<? super IMicroElement> aFilter)
Get a list of all direct child elements matching the provided filter.
|
default com.helger.commons.collection.impl.ICommonsList<IMicroElement> |
IMicroElement.getAllChildElements(String sTagName)
Get a list of all direct child elements having the specified tag name.
|
default com.helger.commons.collection.impl.ICommonsList<IMicroElement> |
IMicroElement.getAllChildElements(String sNamespaceURI,
String sLocalName)
Get a list of all direct child elements having the specified namespace and
the specified tag name.
|
com.helger.commons.collection.impl.ICommonsList<IMicroElement> |
MicroElement.getAllChildElementsRecursive() |
com.helger.commons.collection.impl.ICommonsList<IMicroElement> |
IMicroElement.getAllChildElementsRecursive()
Recursively get all child elements.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MicroElement.containsAnyChildElement(Predicate<? super IMicroElement> aFilter) |
boolean |
IMicroElement.containsAnyChildElement(Predicate<? super IMicroElement> aFilter)
Check if this element has at least one direct child element that matches
the provided filter.
|
IMicroElement |
IMicroNode.findParentElement(Predicate<? super IMicroElement> aFilter) |
IMicroElement |
AbstractMicroNode.findParentElement(Predicate<? super IMicroElement> aFilter) |
default void |
IMicroElement.forAllChildElements(Consumer<? super IMicroElement> aConsumer) |
void |
MicroElement.forAllChildElements(Predicate<? super IMicroElement> aFilter,
Consumer<? super IMicroElement> aConsumer) |
void |
MicroElement.forAllChildElements(Predicate<? super IMicroElement> aFilter,
Consumer<? super IMicroElement> aConsumer) |
void |
IMicroElement.forAllChildElements(Predicate<? super IMicroElement> aFilter,
Consumer<? super IMicroElement> aConsumer) |
void |
IMicroElement.forAllChildElements(Predicate<? super IMicroElement> aFilter,
Consumer<? super IMicroElement> aConsumer) |
default com.helger.commons.state.EContinue |
IMicroElement.forAllChildElementsBreakable(Function<? super IMicroElement,com.helger.commons.state.EContinue> aConsumer) |
com.helger.commons.state.EContinue |
MicroElement.forAllChildElementsBreakable(Predicate<? super IMicroElement> aFilter,
Function<? super IMicroElement,com.helger.commons.state.EContinue> aConsumer) |
com.helger.commons.state.EContinue |
MicroElement.forAllChildElementsBreakable(Predicate<? super IMicroElement> aFilter,
Function<? super IMicroElement,com.helger.commons.state.EContinue> aConsumer) |
com.helger.commons.state.EContinue |
IMicroElement.forAllChildElementsBreakable(Predicate<? super IMicroElement> aFilter,
Function<? super IMicroElement,com.helger.commons.state.EContinue> aConsumer) |
com.helger.commons.state.EContinue |
IMicroElement.forAllChildElementsBreakable(Predicate<? super IMicroElement> aFilter,
Function<? super IMicroElement,com.helger.commons.state.EContinue> aConsumer) |
default com.helger.commons.collection.impl.ICommonsList<IMicroElement> |
IMicroElement.getAllChildElements(Predicate<? super IMicroElement> aFilter)
Get a list of all direct child elements matching the provided filter.
|
default int |
IMicroElement.getChildElementCount(Predicate<? super IMicroElement> aFilter)
Get the number of direct child elements that match the provided filter.
|
IMicroElement |
MicroElement.getFirstChildElement(Predicate<? super IMicroElement> aFilter) |
IMicroElement |
IMicroElement.getFirstChildElement(Predicate<? super IMicroElement> aFilter) |
| Modifier and Type | Method and Description |
|---|---|
IMicroElement |
ColorMicroTypeConverter.convertToMicroElement(Color aObject,
String sNamespaceURI,
String sTagName) |
IMicroElement |
StringMicroTypeConverter.convertToMicroElement(String aObject,
String sNamespaceURI,
String sTagName) |
default IMicroElement |
IMicroTypeConverter.convertToMicroElement(T aObject,
String sTagName)
Convert the passed object to a micro element using the specified tag name
and a
null namespace URI. |
static <T> IMicroElement |
MicroTypeConverter.convertToMicroElement(T aObject,
String sTagName) |
IMicroElement |
StringBasedMicroTypeConverter.convertToMicroElement(T aObject,
String sNamespaceURI,
String sTagName) |
IMicroElement |
IMicroTypeConverter.convertToMicroElement(T aObject,
String sNamespaceURI,
String sTagName)
Convert the passed object to a micro element using the specified tag name
|
static <T> IMicroElement |
MicroTypeConverter.convertToMicroElement(T aObject,
String sNamespaceURI,
String sTagName) |
| Modifier and Type | Method and Description |
|---|---|
String |
StringMicroTypeConverter.convertToNative(IMicroElement aElement) |
T |
StringBasedMicroTypeConverter.convertToNative(IMicroElement aElement) |
com.helger.commons.text.ReadOnlyMultilingualText |
MultilingualTextMicroTypeConverterRegistrar.ReadOnlyMultilingualTextConverter.convertToNative(IMicroElement aElement) |
com.helger.commons.text.MultilingualText |
MultilingualTextMicroTypeConverterRegistrar.MultilingualTextConverter.convertToNative(IMicroElement aElement) |
T |
IMicroTypeConverter.convertToNative(IMicroElement aElement)
Convert the passed object to a native element.
|
Color |
ColorMicroTypeConverter.convertToNative(IMicroElement aElement) |
static <DSTTYPE> DSTTYPE |
MicroTypeConverter.convertToNative(IMicroElement aElement,
Class<DSTTYPE> aDstClass) |
static <DSTTYPE> DSTTYPE |
MicroTypeConverter.convertToNative(IMicroElement aElement,
Class<DSTTYPE> aDstClass,
DSTTYPE aNullValue) |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<? extends IMicroElement> |
ChildrenProviderElementWithName.getAllChildren(IMicroElement aCurrent) |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsList<? extends IMicroElement> |
ChildrenProviderElementWithName.getAllChildren(IMicroElement aCurrent) |
int |
ChildrenProviderElementWithName.getChildCount(IMicroElement aCurrent) |
static String |
MicroHelper.getChildTextContent(IMicroElement eParentElement,
String sChildElementName)
Helper method to extract the text content of the child element denoted by
the parameter sChildElementName of the passed parent element.
|
static String |
MicroHelper.getChildTextContent(IMicroElement eParentElement,
String sNamespaceURI,
String sChildElementName)
Helper method to extract the text content of the child element denoted by
the parameters sNamespaceURI and sChildElementName of the passed parent
element.
|
static String |
MicroHelper.getChildTextContentTrimmed(IMicroElement eParentElement,
String sChildElementName)
Helper method to extract the text content of the child element denoted by
the parameter sChildElementName of the passed parent element.
|
static String |
MicroHelper.getChildTextContentTrimmed(IMicroElement eParentElement,
String sNamespaceURI,
String sChildElementName)
Helper method to extract the text content of the child element denoted by
the parameters sNamespaceURI and sChildElementName of the passed parent
element.
|
static <DSTTYPE> DSTTYPE |
MicroHelper.getChildTextContentWithConversion(IMicroElement eParentElement,
String sChildElementName,
Class<DSTTYPE> aDstClass)
Helper method to extract the text content of the child element denoted by
the parameter sChildElementName of the passed parent element.
|
static <DSTTYPE> DSTTYPE |
MicroHelper.getChildTextContentWithConversion(IMicroElement eParentElement,
String sNamespaceURI,
String sChildElementName,
Class<DSTTYPE> aDstClass)
Helper method to extract the text content of the child element denoted by
the parameters sNamespaceURI and sChildElementName of the passed parent
element.
|
boolean |
ChildrenProviderElementWithName.hasChildren(IMicroElement aCurrent) |
static com.helger.commons.state.ESuccess |
XMLListHandler.readList(IMicroElement aParentElement,
Collection<String> aTargetList) |
static com.helger.commons.state.ESuccess |
XMLMapHandler.readMap(IMicroElement aParentElement,
Map<String,String> aTargetMap) |
| Modifier and Type | Method and Description |
|---|---|
IMicroElement |
MimeTypeInfoMicroTypeConverter.convertToMicroElement(MimeTypeInfo aObject,
String sNamespaceURI,
String sTagName) |
| Modifier and Type | Method and Description |
|---|---|
MimeTypeInfo |
MimeTypeInfoMicroTypeConverter.convertToNative(IMicroElement aElement) |
| Modifier and Type | Method and Description |
|---|---|
IMicroElement |
StatisticsVisitorCallbackToXML.getRoot() |
| Constructor and Description |
|---|
StatisticsVisitorCallbackToXML(IMicroElement eRoot) |
| Modifier and Type | Method and Description |
|---|---|
IMicroElement |
ThreadDescriptorList.getAsMicroNode() |
IMicroElement |
ThreadDescriptor.getAsMicroNode() |
Copyright © 2014–2018 Philip Helger. All rights reserved.