Package | Description |
---|---|
com.hfg.util |
Various utility classes.
|
com.hfg.xml |
Classes for XML handling.
|
Modifier and Type | Method and Description |
---|---|
static Recursion |
Recursion.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Recursion[] |
Recursion.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
<T extends XMLNode> |
XMLContainerImpl.getRequiredSubtagById(String inId,
Recursion inRecursion) |
<T extends XMLNode> |
XMLContainerImpl.getSubtagsByAttribute(String inAttributeName,
Pattern inAttributeValuePattern,
Recursion inRecursion)
Returns a List of all subtags with the specified attribute name and value.
|
<T extends XMLNode> |
XMLContainerImpl.getSubtagsByAttribute(String inAttributeName,
String inAttributeValue,
Recursion inRecursion)
Returns a List of all subtags with the specified attribute name and value
(if recursion is off) or at any level below this object (if recursion is on).
|
<T> List<T> |
XMLContainerImpl.getSubtagsByClass(Class<T> inClassType,
Recursion inRecursion)
Returns a List of all subtags of the specified Java Class on this XMLTag object
(if recursion is off) or at any level below this object (if recursion is on).
|
<T extends XMLNode> |
XMLContainerImpl.getSubtagsByName(String inTagName,
Case inCaseSensitivity,
Recursion inRecursion) |
<T extends XMLNode> |
XMLContainer.getSubtagsByName(String inTagName,
Recursion inRecursion)
Returns a List of all subtags with the specified tag name on this XMLTag object.
|
<T extends XMLNode> |
XMLContainerImpl.getSubtagsByName(String inTagName,
Recursion inRecursion) |
<T extends XMLNode> |
XMLContainer.getSubtagsByName(XMLName inTagName,
Recursion inRecursion)
Returns a List of all subtags with the specified tag name on this XMLTag object.
|
<T extends XMLNode> |
XMLContainerImpl.getSubtagsByName(XMLName inTagName,
Recursion inRecursion) |
<T extends XMLNode> |
XMLContainerImpl.removeSubtagsByAttribute(String inAttributeName,
Pattern inAttributeValuePattern,
Recursion inRecursion)
Removes all subtags with the specified tag name from this XMLTag object
(if recursion is off) or at any level below this object (if recursion is on).
|
<T extends XMLNode> |
XMLContainerImpl.removeSubtagsByAttribute(String inAttributeName,
String inAttributeValue,
Recursion inRecursion)
Removes all subtags with the specified tag name from this XMLTag object
(if recursion is off) or at any level below this object (if recursion is on).
|
<T extends XMLNode> |
XMLContainerImpl.removeSubtagsByAttribute(XMLName inAttributeName,
String inAttributeValue,
Recursion inRecursion)
Removes all subtags with the specified tag name from this XMLTag object
(if recursion is off) or at any level below this object (if recursion is on).
|
<T extends XMLContainer> |
XMLContainerImpl.removeSubtagsByClass(Class<T> inClassType,
Recursion inRecursion)
Removes subtags of the specified Java Class on this XMLTag object
(if recursion is off) or at any level below this object (if recursion is on).
|
<T extends XMLNode> |
XMLContainerImpl.removeSubtagsByName(String inTagName,
Recursion inRecursion)
Removes all subtags with the specified tag name from this XMLTag object
(if recursion is off) or at any level below this object (if recursion is on).
|
jataylor@hairyfatguy.com