public class TokenLeavesTimedZoneMatcher extends BaseMatcher<TokenLeavesTimedZoneMatch>
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 TokenLeavesTimedZoneMatch
.
Original source:
pattern tokenLeavesTimedZone(eventToken : EventToken, state : State, timedZone : TimedZone, trapState : TrapState) {
EventToken.currentState(eventToken, state);
EventToken.timedZones(eventToken, timedZone);
State.outStateOf(state, timedZone);
Automaton.eventTokens(automaton, eventToken);
Automaton.states(automaton, trapState);
}
TokenLeavesTimedZoneMatch
,
TokenLeavesTimedZoneProcessor
,
TokenLeavesTimedZoneQuerySpecification
engine, querySpecification
Modifier and Type | Method and Description |
---|---|
protected TokenLeavesTimedZoneMatch |
arrayToMatch(java.lang.Object[] match)
Converts the array representation of a pattern match to an immutable Match object.
|
protected TokenLeavesTimedZoneMatch |
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,
TrapState pTrapState)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
static TokenLeavesTimedZoneMatcher |
create() |
void |
forEachMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone,
TrapState pTrapState,
IMatchProcessor<? super TokenLeavesTimedZoneMatch> 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,
TrapState pTrapState,
IMatchProcessor<? super TokenLeavesTimedZoneMatch> 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<TokenLeavesTimedZoneMatch> |
getAllMatches(EventToken pEventToken,
State pState,
TimedZone pTimedZone,
TrapState pTrapState)
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,
TrapState pTrapState)
Retrieve the set of values that occur in matches for eventToken.
|
java.util.Set<EventToken> |
getAllValuesOfeventToken(TokenLeavesTimedZoneMatch 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,
TrapState pTrapState)
Retrieve the set of values that occur in matches for state.
|
java.util.Set<State> |
getAllValuesOfstate(TokenLeavesTimedZoneMatch 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,
TrapState pTrapState)
Retrieve the set of values that occur in matches for timedZone.
|
java.util.Set<TimedZone> |
getAllValuesOftimedZone(TokenLeavesTimedZoneMatch partialMatch)
Retrieve the set of values that occur in matches for timedZone.
|
java.util.Set<TrapState> |
getAllValuesOftrapState()
Retrieve the set of values that occur in matches for trapState.
|
java.util.Set<TrapState> |
getAllValuesOftrapState(EventToken pEventToken,
State pState,
TimedZone pTimedZone)
Retrieve the set of values that occur in matches for trapState.
|
java.util.Set<TrapState> |
getAllValuesOftrapState(TokenLeavesTimedZoneMatch partialMatch)
Retrieve the set of values that occur in matches for trapState.
|
TokenLeavesTimedZoneMatch |
getOneArbitraryMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone,
TrapState pTrapState)
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,
TrapState pTrapState)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
TokenLeavesTimedZoneMatch |
newMatch(EventToken pEventToken,
State pState,
TimedZone pTimedZone,
TrapState pTrapState)
Returns a new (partial) match.
|
static TokenLeavesTimedZoneMatcher |
on(ViatraQueryEngine engine)
Initializes the pattern matcher within an existing VIATRA Query engine.
|
static IQuerySpecification<TokenLeavesTimedZoneMatcher> |
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 java.util.Set<TrapState> |
rawAccumulateAllValuesOftrapState(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for trapState.
|
protected TokenLeavesTimedZoneMatch |
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 TokenLeavesTimedZoneMatcher 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 TokenLeavesTimedZoneMatcher create() throws ViatraQueryException
ViatraQueryException
- if an error occurs during pattern matcher creationpublic java.util.Collection<TokenLeavesTimedZoneMatch> getAllMatches(EventToken pEventToken, State pState, TimedZone pTimedZone, TrapState pTrapState)
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.pTrapState
- the fixed value of pattern parameter trapState, or null if not bound.public TokenLeavesTimedZoneMatch getOneArbitraryMatch(EventToken pEventToken, State pState, TimedZone pTimedZone, TrapState pTrapState)
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.pTrapState
- the fixed value of pattern parameter trapState, or null if not bound.public boolean hasMatch(EventToken pEventToken, State pState, TimedZone pTimedZone, TrapState pTrapState)
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.pTrapState
- the fixed value of pattern parameter trapState, or null if not bound.public int countMatches(EventToken pEventToken, State pState, TimedZone pTimedZone, TrapState pTrapState)
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.pTrapState
- the fixed value of pattern parameter trapState, or null if not bound.public void forEachMatch(EventToken pEventToken, State pState, TimedZone pTimedZone, TrapState pTrapState, IMatchProcessor<? super TokenLeavesTimedZoneMatch> 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.pTrapState
- the fixed value of pattern parameter trapState, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(EventToken pEventToken, State pState, TimedZone pTimedZone, TrapState pTrapState, IMatchProcessor<? super TokenLeavesTimedZoneMatch> 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.pTrapState
- the fixed value of pattern parameter trapState, or null if not bound.processor
- the action that will process the selected match.public TokenLeavesTimedZoneMatch newMatch(EventToken pEventToken, State pState, TimedZone pTimedZone, TrapState pTrapState)
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.pTrapState
- the fixed value of pattern parameter trapState, 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(TokenLeavesTimedZoneMatch partialMatch)
public java.util.Set<EventToken> getAllValuesOfeventToken(State pState, TimedZone pTimedZone, TrapState pTrapState)
protected java.util.Set<State> rawAccumulateAllValuesOfstate(java.lang.Object[] parameters)
public java.util.Set<State> getAllValuesOfstate()
public java.util.Set<State> getAllValuesOfstate(TokenLeavesTimedZoneMatch partialMatch)
public java.util.Set<State> getAllValuesOfstate(EventToken pEventToken, TimedZone pTimedZone, TrapState pTrapState)
protected java.util.Set<TimedZone> rawAccumulateAllValuesOftimedZone(java.lang.Object[] parameters)
public java.util.Set<TimedZone> getAllValuesOftimedZone()
public java.util.Set<TimedZone> getAllValuesOftimedZone(TokenLeavesTimedZoneMatch partialMatch)
public java.util.Set<TimedZone> getAllValuesOftimedZone(EventToken pEventToken, State pState, TrapState pTrapState)
protected java.util.Set<TrapState> rawAccumulateAllValuesOftrapState(java.lang.Object[] parameters)
public java.util.Set<TrapState> getAllValuesOftrapState()
public java.util.Set<TrapState> getAllValuesOftrapState(TokenLeavesTimedZoneMatch partialMatch)
public java.util.Set<TrapState> getAllValuesOftrapState(EventToken pEventToken, State pState, TimedZone pTimedZone)
protected TokenLeavesTimedZoneMatch tupleToMatch(Tuple t)
tupleToMatch
in class BaseMatcher<TokenLeavesTimedZoneMatch>
protected TokenLeavesTimedZoneMatch arrayToMatch(java.lang.Object[] match)
BaseMatcher
arrayToMatch
in class BaseMatcher<TokenLeavesTimedZoneMatch>
protected TokenLeavesTimedZoneMatch arrayToMatchMutable(java.lang.Object[] match)
BaseMatcher
arrayToMatchMutable
in class BaseMatcher<TokenLeavesTimedZoneMatch>
public static IQuerySpecification<TokenLeavesTimedZoneMatcher> querySpecification() throws ViatraQueryException
ViatraQueryException
- if the pattern definition could not be loaded