java.lang.Object
java.lang.Record
de.learnlib.oracle.TimedQueryOracle.TimerQueryResult<O>
- Type Parameters:
O- output symbol type- Record Components:
aborted-trueif query was aborted due to missing timeout,falseotherwise.timers- the identified timers
- Enclosing interface:
- TimedQueryOracle<I,
O>
public static record TimedQueryOracle.TimerQueryResult<O>(boolean aborted, List<TimerInfo<?,O>> timers)
extends Record
Response for a timer query.
-
Constructor Summary
ConstructorsConstructorDescriptionTimerQueryResult(boolean aborted, List<TimerInfo<?, O>> timers) Creates an instance of aTimerQueryResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanaborted()Returns the value of theabortedrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.timers()Returns the value of thetimersrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
aborted
public boolean aborted()Returns the value of theabortedrecord component.- Returns:
- the value of the
abortedrecord component
-
timers
Returns the value of thetimersrecord component.- Returns:
- the value of the
timersrecord component
-