public abstract class PropertyAttributesMatch
extends org.eclipse.viatra.query.runtime.api.impl.BasePatternMatch
PropertyAttributesMatcher
.
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.
PropertyAttributesMatcher
,
PropertyAttributesProcessor
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Object |
get(java.lang.String parameterName) |
java.lang.String |
getName() |
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property |
getProperty() |
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type |
getType() |
int |
hashCode() |
static PropertyAttributesMatch |
newEmptyMatch()
Returns an empty, mutable match.
|
static PropertyAttributesMatch |
newMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty,
java.lang.String pName,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type pType)
Returns a new (partial) match.
|
static PropertyAttributesMatch |
newMutableMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty,
java.lang.String pName,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type pType)
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 |
setName(java.lang.String pName) |
void |
setProperty(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty) |
void |
setType(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type pType) |
PropertyAttributesQuerySpecification |
specification() |
java.lang.Object[] |
toArray() |
PropertyAttributesMatch |
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.Property getProperty()
public java.lang.String getName()
public com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type getType()
public boolean set(java.lang.String parameterName, java.lang.Object newValue)
public void setProperty(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty)
public void setName(java.lang.String pName)
public void setType(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type pType)
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 PropertyAttributesMatch 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 PropertyAttributesQuerySpecification specification()
public static PropertyAttributesMatch newEmptyMatch()
public static PropertyAttributesMatch newMutableMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty, java.lang.String pName, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type pType)
pProperty
- the fixed value of pattern parameter property, or null if not bound.pName
- the fixed value of pattern parameter name, or null if not bound.pType
- the fixed value of pattern parameter type, or null if not bound.public static PropertyAttributesMatch newMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty, java.lang.String pName, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Type pType)
The returned match will be immutable. Use newEmptyMatch()
to obtain a mutable match object.
pProperty
- the fixed value of pattern parameter property, or null if not bound.pName
- the fixed value of pattern parameter name, or null if not bound.pType
- the fixed value of pattern parameter type, or null if not bound.