Interface EventClock
- All Known Implementing Classes:
EventClockImpl
public interface EventClock
An interface providing methods to access
EventClock implementation values-
Method Summary
Modifier and TypeMethodDescriptionReturns the event time of the sport event associated with the current instanceReturns the remaining event timeReturns the remaining period timeReturns the time at which the event associated with the current instance has been stoppedReturns the time at which the stoppage time has been announcedReturns an indication if the event clock is currently stopped
-
Method Details
-
getEventTime
String getEventTime()Returns the event time of the sport event associated with the current instance- Returns:
- - the event time of the sport event associated with the current instance
-
getStoppageTime
String getStoppageTime()Returns the time at which the event associated with the current instance has been stopped- Returns:
- - the time at which the event associated with the current instance has been stopped
-
getStoppageTimeAnnounced
String getStoppageTimeAnnounced()Returns the time at which the stoppage time has been announced- Returns:
- - the time at which the stoppage time has been announced
-
getRemainingTime
String getRemainingTime()Returns the remaining event time- Returns:
- - the remaining event time if available; otherwise null
-
getRemainingTimeInPeriod
String getRemainingTimeInPeriod()Returns the remaining period time- Returns:
- - the remaining period time if available; otherwise null
-
getStopped
Boolean getStopped()Returns an indication if the event clock is currently stopped- Returns:
- - an indication if the event clock is currently stopped if available; otherwise null
-