Interface ITouchpointData
public interface ITouchpointData
ITouchpoint data instances contain the additional information needed by a touchpoint
to execute each engine phase it participates in. This includes the sequence of
instruction statements to be executed during each phase, and any additional
supporting data needed to perform the phase.
- Since:
- 2.0
- See Also:
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether this TouchpointData is equal to the given object.getInstruction(String instructionKey) Returns the touchpoint instruction corresponding to the given key.Returns an unmodifiable map of the touchpoint instructions.
-
Method Details
-
getInstruction
Returns the touchpoint instruction corresponding to the given key.- Returns:
- the touchpoint instruction corresponding to the given key,
or
nullif no such instruction exists.
-
getInstructions
Map<String, ITouchpointInstruction> getInstructions()Returns an unmodifiable map of the touchpoint instructions. The map keys are strings, and the values are instances ofITouchpointInstruction.- Returns:
- the touchpoint instructions
-
equals
-