Package com.codeborne.selenide
Record Class HighlightOptions
java.lang.Object
java.lang.Record
com.codeborne.selenide.HighlightOptions
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionHighlightOptions(String style) Creates an instance of aHighlightOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic HighlightOptionsstatic HighlightOptionsbackground(String backgroundStyle) static HighlightOptionsborder()static HighlightOptionsfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.style()Returns the value of thestylerecord component.static HighlightOptionsfinal StringtoString()Returns a string representation of this record class.
-
Field Details
-
DEFAULT
-
-
Constructor Details
-
HighlightOptions
Creates an instance of aHighlightOptionsrecord class.- Parameters:
style- the value for thestylerecord component
-
-
Method Details
-
background
-
background
-
border
-
border
-
style
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
style
Returns the value of thestylerecord component.- Returns:
- the value of the
stylerecord component
-