public abstract class GeneralizationMatch
extends org.eclipse.viatra.query.runtime.api.impl.BasePatternMatch
GeneralizationMatcher
.
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.
GeneralizationMatcher
,
GeneralizationProcessor
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Object |
get(java.lang.String parameterName) |
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class |
getGeneral() |
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class |
getSpecific() |
int |
hashCode() |
static GeneralizationMatch |
newEmptyMatch()
Returns an empty, mutable match.
|
static GeneralizationMatch |
newMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pGeneral,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pSpecific)
Returns a new (partial) match.
|
static GeneralizationMatch |
newMutableMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pGeneral,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pSpecific)
Returns a mutable (partial) match.
|
java.util.List<java.lang.String> |
parameterNames() |
java.lang.String |
patternName() |
java.lang.String |
prettyPrint() |
boolean |
set(java.lang.String parameterName,
java.lang.Object newValue) |
void |
setGeneral(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pGeneral) |
void |
setSpecific(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pSpecific) |
GeneralizationQuerySpecification |
specification() |
java.lang.Object[] |
toArray() |
GeneralizationMatch |
toImmutable() |
get, isCompatibleWith, makeImmutableList, prettyPrintFeature, prettyPrintValue, set, toString
public java.lang.Object get(java.lang.String parameterName)
public com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class getGeneral()
public com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class getSpecific()
public boolean set(java.lang.String parameterName, java.lang.Object newValue)
public void setGeneral(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pGeneral)
public void setSpecific(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pSpecific)
public java.lang.String patternName()
patternName
in interface org.eclipse.viatra.query.runtime.api.IPatternMatch
patternName
in class org.eclipse.viatra.query.runtime.api.impl.BasePatternMatch
public java.util.List<java.lang.String> parameterNames()
parameterNames
in interface org.eclipse.viatra.query.runtime.api.IPatternMatch
parameterNames
in class org.eclipse.viatra.query.runtime.api.impl.BasePatternMatch
public java.lang.Object[] toArray()
public GeneralizationMatch toImmutable()
public java.lang.String prettyPrint()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public GeneralizationQuerySpecification specification()
public static GeneralizationMatch newEmptyMatch()
public static GeneralizationMatch newMutableMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pGeneral, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pSpecific)
pGeneral
- the fixed value of pattern parameter general, or null if not bound.pSpecific
- the fixed value of pattern parameter specific, or null if not bound.public static GeneralizationMatch newMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pGeneral, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pSpecific)
The returned match will be immutable. Use newEmptyMatch()
to obtain a mutable match object.
pGeneral
- the fixed value of pattern parameter general, or null if not bound.pSpecific
- the fixed value of pattern parameter specific, or null if not bound.