Package | Description |
---|---|
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
static MatchType |
MatchType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MatchType[] |
MatchType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<org.w3c.dom.Node> |
XmlUtils.findAllNodes(org.w3c.dom.Node node,
java.lang.String childNodeName,
MatchType matchType,
StringComparison comparisonType)
Searches for all matching child nodes found under the given Node.
|
static org.w3c.dom.Node |
XmlUtils.findAttribute(org.w3c.dom.Node node,
java.lang.String attributeName,
MatchType matchType,
StringComparison comparisonType)
Searches for the first matching attribute found on the given Node.
|
static org.w3c.dom.Node |
XmlUtils.findNode(org.w3c.dom.Node node,
java.lang.String childNodeName,
int index,
MatchType matchType,
StringComparison comparisonType)
Searches for a matching child node found under the given Node.
|
static boolean |
ByteArrayUtils.match(byte[] a,
MatchType byteMatch,
byte[] b)
Allows for matching a byte[] to another, using Equals, StartsWith, EndsWith or Contains matching types.
|
static boolean |
StringUtils.match(java.lang.String a,
MatchType stringMatch,
java.lang.String b,
java.util.Locale locale,
java.text.Collator collator,
boolean caseSensitive)
Allows for matching a string to another, using Equals, StartsWith, EndsWith or Contains and a string comparison.
|
static boolean |
StringUtils.match(java.lang.String a,
MatchType stringMatch,
java.lang.String b,
StringComparison stringComparison)
Allows for matching a string to another, using Equals, StartsWith, EndsWith or Contains and a string comparison.
|
static java.lang.String |
XmlUtils.parseAttribute(org.w3c.dom.Node node,
java.lang.String attributeName,
MatchType matchType,
StringComparison comparisonType)
Parses the first matching attribute found on the given Node.
|
static java.lang.String |
XmlUtils.parseNode(org.w3c.dom.Node node,
java.lang.String childNodeName,
int index,
MatchType matchType,
StringComparison comparisonType)
Parses a child node found on the given Node.
|