Package com.codeborne.selenide
Record Class HighlightOptions
java.lang.Object
java.lang.Record
com.codeborne.selenide.HighlightOptions
-
Field Summary
-
Constructor Summary
ConstructorDescriptionHighlightOptions
(String style) Creates an instance of aHighlightOptions
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic HighlightOptions
static HighlightOptions
background
(String backgroundStyle) static HighlightOptions
border()
static HighlightOptions
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.style()
Returns the value of thestyle
record component.static HighlightOptions
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
DEFAULT
-
-
Constructor Details
-
HighlightOptions
Creates an instance of aHighlightOptions
record class.- Parameters:
style
- the value for thestyle
record 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 thestyle
record component.- Returns:
- the value of the
style
record component
-