public class TokenInTimedZoneMatcher extends BaseMatcher<TokenInTimedZoneMatch>
Use the pattern matcher on a given model via on(ViatraQueryEngine)
,
e.g. in conjunction with ViatraQueryEngine#on(Notifier)
.
Matches of the pattern will be represented as TokenInTimedZoneMatch
.
Original source:
pattern tokenInTimedZone(eventToken : EventToken, state : State, timedZone : TimedZone) {
EventToken.currentState(eventToken, state);
State.inStateOf(state, timedZone);
}
TokenInTimedZoneMatch
,
TokenInTimedZoneProcessor
,
TokenInTimedZoneQuerySpecification
engine, querySpecification
Modifier and Type | Method and Description |
---|---|
protected TokenInTimedZoneMatch |
arrayToMatch(java.lang.Object[] match)
Converts the array representation of a pattern match to an immutable Match object.
|
protected TokenInTimedZoneMatch |
arrayToMatchMutable(java.lang.Object[] match)
Converts the array representation of a pattern match to a mutable Match object.
|
int |
countMatches(EventToken pEventToken,
State pState,
TimedZone pTimedZone)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
static TokenInTimedZoneMatcher |
create() |
void |
forEachMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone,
IMatchProcessor<? super TokenInTimedZoneMatch> processor)
Executes the given processor on each match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
forOneArbitraryMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone,
IMatchProcessor<? super TokenInTimedZoneMatch> processor)
Executes the given processor on an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
java.util.Collection<TokenInTimedZoneMatch> |
getAllMatches(EventToken pEventToken,
State pState,
TimedZone pTimedZone)
Returns the set of all matches of the pattern that conform to the given fixed values of some parameters.
|
java.util.Set<EventToken> |
getAllValuesOfeventToken()
Retrieve the set of values that occur in matches for eventToken.
|
java.util.Set<EventToken> |
getAllValuesOfeventToken(State pState,
TimedZone pTimedZone)
Retrieve the set of values that occur in matches for eventToken.
|
java.util.Set<EventToken> |
getAllValuesOfeventToken(TokenInTimedZoneMatch partialMatch)
Retrieve the set of values that occur in matches for eventToken.
|
java.util.Set<State> |
getAllValuesOfstate()
Retrieve the set of values that occur in matches for state.
|
java.util.Set<State> |
getAllValuesOfstate(EventToken pEventToken,
TimedZone pTimedZone)
Retrieve the set of values that occur in matches for state.
|
java.util.Set<State> |
getAllValuesOfstate(TokenInTimedZoneMatch partialMatch)
Retrieve the set of values that occur in matches for state.
|
java.util.Set<TimedZone> |
getAllValuesOftimedZone()
Retrieve the set of values that occur in matches for timedZone.
|
java.util.Set<TimedZone> |
getAllValuesOftimedZone(EventToken pEventToken,
State pState)
Retrieve the set of values that occur in matches for timedZone.
|
java.util.Set<TimedZone> |
getAllValuesOftimedZone(TokenInTimedZoneMatch partialMatch)
Retrieve the set of values that occur in matches for timedZone.
|
TokenInTimedZoneMatch |
getOneArbitraryMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
TokenInTimedZoneMatch |
newMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone)
Returns a new (partial) match.
|
static TokenInTimedZoneMatcher |
on(ViatraQueryEngine engine)
Initializes the pattern matcher within an existing VIATRA Query engine.
|
static IQuerySpecification<TokenInTimedZoneMatcher> |
querySpecification() |
protected java.util.Set<EventToken> |
rawAccumulateAllValuesOfeventToken(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for eventToken.
|
protected java.util.Set<State> |
rawAccumulateAllValuesOfstate(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for state.
|
protected java.util.Set<TimedZone> |
rawAccumulateAllValuesOftimedZone(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for timedZone.
|
protected TokenInTimedZoneMatch |
tupleToMatch(Tuple t) |
countMatches, countMatches, emptyArray, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getCapabilities, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, matchToArray, newEmptyMatch, newMatch, rawAccumulateAllValues, rawCountMatches, rawForEachMatch, rawForOneArbitraryMatch, rawGetAllMatches, rawGetAllValues, rawGetOneArbitraryMatch, rawHasMatch, setBackend
public static TokenInTimedZoneMatcher on(ViatraQueryEngine engine) throws ViatraQueryException
engine
- the existing VIATRA Query engine in which this matcher will be created.ViatraQueryException
- if an error occurs during pattern matcher creationpublic static TokenInTimedZoneMatcher create() throws ViatraQueryException
ViatraQueryException
- if an error occurs during pattern matcher creationpublic java.util.Collection<TokenInTimedZoneMatch> getAllMatches(EventToken pEventToken, State pState, TimedZone pTimedZone)
pEventToken
- the fixed value of pattern parameter eventToken, or null if not bound.pState
- the fixed value of pattern parameter state, or null if not bound.pTimedZone
- the fixed value of pattern parameter timedZone, or null if not bound.public TokenInTimedZoneMatch getOneArbitraryMatch(EventToken pEventToken, State pState, TimedZone pTimedZone)
pEventToken
- the fixed value of pattern parameter eventToken, or null if not bound.pState
- the fixed value of pattern parameter state, or null if not bound.pTimedZone
- the fixed value of pattern parameter timedZone, or null if not bound.public boolean hasMatch(EventToken pEventToken, State pState, TimedZone pTimedZone)
pEventToken
- the fixed value of pattern parameter eventToken, or null if not bound.pState
- the fixed value of pattern parameter state, or null if not bound.pTimedZone
- the fixed value of pattern parameter timedZone, or null if not bound.public int countMatches(EventToken pEventToken, State pState, TimedZone pTimedZone)
pEventToken
- the fixed value of pattern parameter eventToken, or null if not bound.pState
- the fixed value of pattern parameter state, or null if not bound.pTimedZone
- the fixed value of pattern parameter timedZone, or null if not bound.public void forEachMatch(EventToken pEventToken, State pState, TimedZone pTimedZone, IMatchProcessor<? super TokenInTimedZoneMatch> processor)
pEventToken
- the fixed value of pattern parameter eventToken, or null if not bound.pState
- the fixed value of pattern parameter state, or null if not bound.pTimedZone
- the fixed value of pattern parameter timedZone, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(EventToken pEventToken, State pState, TimedZone pTimedZone, IMatchProcessor<? super TokenInTimedZoneMatch> processor)
pEventToken
- the fixed value of pattern parameter eventToken, or null if not bound.pState
- the fixed value of pattern parameter state, or null if not bound.pTimedZone
- the fixed value of pattern parameter timedZone, or null if not bound.processor
- the action that will process the selected match.public TokenInTimedZoneMatch newMatch(EventToken pEventToken, State pState, TimedZone pTimedZone)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch()
to obtain a mutable match object.
pEventToken
- the fixed value of pattern parameter eventToken, or null if not bound.pState
- the fixed value of pattern parameter state, or null if not bound.pTimedZone
- the fixed value of pattern parameter timedZone, or null if not bound.protected java.util.Set<EventToken> rawAccumulateAllValuesOfeventToken(java.lang.Object[] parameters)
public java.util.Set<EventToken> getAllValuesOfeventToken()
public java.util.Set<EventToken> getAllValuesOfeventToken(TokenInTimedZoneMatch partialMatch)
public java.util.Set<EventToken> getAllValuesOfeventToken(State pState, TimedZone pTimedZone)
protected java.util.Set<State> rawAccumulateAllValuesOfstate(java.lang.Object[] parameters)
public java.util.Set<State> getAllValuesOfstate()
public java.util.Set<State> getAllValuesOfstate(TokenInTimedZoneMatch partialMatch)
public java.util.Set<State> getAllValuesOfstate(EventToken pEventToken, TimedZone pTimedZone)
protected java.util.Set<TimedZone> rawAccumulateAllValuesOftimedZone(java.lang.Object[] parameters)
public java.util.Set<TimedZone> getAllValuesOftimedZone()
public java.util.Set<TimedZone> getAllValuesOftimedZone(TokenInTimedZoneMatch partialMatch)
public java.util.Set<TimedZone> getAllValuesOftimedZone(EventToken pEventToken, State pState)
protected TokenInTimedZoneMatch tupleToMatch(Tuple t)
tupleToMatch
in class BaseMatcher<TokenInTimedZoneMatch>
protected TokenInTimedZoneMatch arrayToMatch(java.lang.Object[] match)
BaseMatcher
arrayToMatch
in class BaseMatcher<TokenInTimedZoneMatch>
protected TokenInTimedZoneMatch arrayToMatchMutable(java.lang.Object[] match)
BaseMatcher
arrayToMatchMutable
in class BaseMatcher<TokenInTimedZoneMatch>
public static IQuerySpecification<TokenInTimedZoneMatcher> querySpecification() throws ViatraQueryException
ViatraQueryException
- if the pattern definition could not be loaded