Interface IDomToObjectConverter<T>

All Known Implementing Classes:
AbstractDomToObjectConverter, DomToParametersConverter, DomToPropertiesConverter, DomToPropertyConverter

public interface IDomToObjectConverter<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    default <V> void
    addTo(List<V> list, V value)
     
    default boolean
    booleanValue(org.dom4j.Element element, String attributeName)
     
    default boolean
    booleanValue(org.dom4j.Element element, String attributeName, boolean defaultValue)
     
    convert(org.dom4j.Element element)
     
    dateTimeValue(org.dom4j.Element element, String attributeName)
     
    default double
    doubleValue(org.dom4j.Element element, double defaultValue)
     
    default double
    doubleValue(org.dom4j.Element element, String attributeName)
     
    default double
    doubleValue(org.dom4j.Element element, String attributeName, double defaultValue)
     
    default Duration
    durationValue(org.dom4j.Element element, String attributeName)
     
    default Duration
    durationValue(org.dom4j.Element element, String attributeName, Duration defaultValue)
     
    default org.dom4j.Element
    element(org.dom4j.Element element, String name)
     
    default org.dom4j.Element
    element(org.dom4j.Element element, org.dom4j.QName name)
     
    default List<org.dom4j.Element>
    elements(org.dom4j.Element element, String name)
     
    default List<org.dom4j.Element>
    elements(org.dom4j.Element element, org.dom4j.QName name)
     
    default float
    floatValue(org.dom4j.Element element, String attributeName, float defaultValue)
     
    default int
    intValue(org.dom4j.Element element, int defaultValue)
     
    default int
    intValue(org.dom4j.Element element, String attributeName)
     
    default int
    intValue(org.dom4j.Element element, String attributeName, int defaultValue)
     
    default String
    text(org.dom4j.Element element)
     
    default String
    text(org.dom4j.Element element, String defaultText)
     
    default String
    value(org.dom4j.Element element, String attributeName)
     
    default String
    value(org.dom4j.Element element, String attributeName, String defaultValue)