Record Class TestWatcherController.LogBean
java.lang.Object
java.lang.Record
eu.rarogsoftware.rarog.platform.plugins.backdoor.rest.TestWatcherController.LogBean
- Enclosing class:
- TestWatcherController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanbefore()Returns the value of thebeforerecord component.final booleanIndicates whether some other object is "equal to" this one.error()Returns the value of theerrorrecord component.final inthashCode()Returns a hash code value for this object.testName()Returns the value of thetestNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LogBean
Creates an instance of aLogBeanrecord class.- Parameters:
testName- the value for thetestNamerecord componentbefore- the value for thebeforerecord componenterror- the value for theerrorrecord component
-
-
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 '=='. -
testName
Returns the value of thetestNamerecord component.- Returns:
- the value of the
testNamerecord component
-
before
public boolean before()Returns the value of thebeforerecord component.- Returns:
- the value of the
beforerecord component
-
error
Returns the value of theerrorrecord component.- Returns:
- the value of the
errorrecord component
-