public abstract class ChildrenMatch extends BasePatternMatch
ChildrenMatcher.
Class fields correspond to parameters of the pattern. Fields with value null are considered unassigned. Each instance is a (possibly partial) substitution of pattern parameters, usable to represent a match of the pattern in the result of a query, or to specify the bound (fixed) input parameters when issuing a query.
ChildrenMatcher,
ChildrenProcessor| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Object |
get(java.lang.String parameterName)
Returns the value of the parameter with the given name, or null if name is invalid.
|
Item |
getChild() |
Item |
getParent() |
int |
hashCode() |
static ChildrenMatch |
newEmptyMatch()
Returns an empty, mutable match.
|
static ChildrenMatch |
newMatch(Item pParent,
Item pChild)
Returns a new (partial) match.
|
static ChildrenMatch |
newMutableMatch(Item pParent,
Item pChild)
Returns a mutable (partial) match.
|
java.util.List<java.lang.String> |
parameterNames()
Returns the list of symbolic parameter names.
|
java.lang.String |
patternName()
Identifies the name of the pattern for which this is a match.
|
java.lang.String |
prettyPrint()
Prints the list of parameter-value pairs.
|
boolean |
set(java.lang.String parameterName,
java.lang.Object newValue)
Sets the parameter with the given name to the given value.
|
void |
setChild(Item pChild) |
void |
setParent(Item pParent) |
ChildrenQuerySpecification |
specification() |
java.lang.Object[] |
toArray()
Converts the match to an array representation, with each pattern parameter at their respective position.
|
ChildrenMatch |
toImmutable()
Takes an immutable snapshot of this match.
|
get, isCompatibleWith, prettyPrintFeature, prettyPrintValue, set, toStringisMutablepublic java.lang.Object get(java.lang.String parameterName)
IPatternMatchpublic Item getParent()
public Item getChild()
public boolean set(java.lang.String parameterName,
java.lang.Object newValue)
IPatternMatch Works only if match is mutable. See IPatternMatch.isMutable().
public void setParent(Item pParent)
public void setChild(Item pChild)
public java.lang.String patternName()
IPatternMatchpatternName in interface IPatternMatchpatternName in class BasePatternMatchpublic java.util.List<java.lang.String> parameterNames()
IPatternMatchparameterNames in interface IPatternMatchparameterNames in class BasePatternMatchpublic java.lang.Object[] toArray()
IPatternMatchpublic ChildrenMatch toImmutable()
IPatternMatchpublic java.lang.String prettyPrint()
IPatternMatchpublic int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic ChildrenQuerySpecification specification()
public static ChildrenMatch newEmptyMatch()
public static ChildrenMatch newMutableMatch(Item pParent, Item pChild)
pParent - the fixed value of pattern parameter parent, or null if not bound.pChild - the fixed value of pattern parameter child, or null if not bound.public static ChildrenMatch newMatch(Item pParent, Item pChild)
The returned match will be immutable. Use newEmptyMatch() to obtain a mutable match object.
pParent - the fixed value of pattern parameter parent, or null if not bound.pChild - the fixed value of pattern parameter child, or null if not bound.