public abstract class StereotypedBlocksMatch
extends org.eclipse.viatra.query.runtime.api.impl.BasePatternMatch
StereotypedBlocksMatcher
.
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.
StereotypedBlocksMatcher
,
StereotypedBlocksProcessor
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 |
getBlock() |
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property |
getProperty() |
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot |
getSlot() |
com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype |
getStereotype() |
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification |
getValue() |
int |
hashCode() |
static StereotypedBlocksMatch |
newEmptyMatch()
Returns an empty, mutable match.
|
static StereotypedBlocksMatch |
newMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pBlock,
com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype pStereotype,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot pSlot,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification pValue)
Returns a new (partial) match.
|
static StereotypedBlocksMatch |
newMutableMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pBlock,
com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype pStereotype,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot pSlot,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty,
com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification pValue)
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 |
setBlock(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pBlock) |
void |
setProperty(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty) |
void |
setSlot(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot pSlot) |
void |
setStereotype(com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype pStereotype) |
void |
setValue(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification pValue) |
StereotypedBlocksQuerySpecification |
specification() |
java.lang.Object[] |
toArray() |
StereotypedBlocksMatch |
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 getBlock()
public com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype getStereotype()
public com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot getSlot()
public com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property getProperty()
public com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification getValue()
public boolean set(java.lang.String parameterName, java.lang.Object newValue)
public void setBlock(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pBlock)
public void setStereotype(com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype pStereotype)
public void setSlot(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot pSlot)
public void setProperty(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty)
public void setValue(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification pValue)
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 StereotypedBlocksMatch 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 StereotypedBlocksQuerySpecification specification()
public static StereotypedBlocksMatch newEmptyMatch()
public static StereotypedBlocksMatch newMutableMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pBlock, com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype pStereotype, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot pSlot, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification pValue)
pBlock
- the fixed value of pattern parameter block, or null if not bound.pStereotype
- the fixed value of pattern parameter stereotype, or null if not bound.pSlot
- the fixed value of pattern parameter slot, or null if not bound.pProperty
- the fixed value of pattern parameter property, or null if not bound.pValue
- the fixed value of pattern parameter value, or null if not bound.public static StereotypedBlocksMatch newMatch(com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Class pBlock, com.nomagic.uml2.ext.magicdraw.mdprofiles.Stereotype pStereotype, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Slot pSlot, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Property pProperty, com.nomagic.uml2.ext.magicdraw.classes.mdkernel.LiteralSpecification pValue)
The returned match will be immutable. Use newEmptyMatch()
to obtain a mutable match object.
pBlock
- the fixed value of pattern parameter block, or null if not bound.pStereotype
- the fixed value of pattern parameter stereotype, or null if not bound.pSlot
- the fixed value of pattern parameter slot, or null if not bound.pProperty
- the fixed value of pattern parameter property, or null if not bound.pValue
- the fixed value of pattern parameter value, or null if not bound.