Package com.codeborne.selenide
Record Class DragAndDropOptions
java.lang.Object
java.lang.Record
com.codeborne.selenide.DragAndDropOptions
public record DragAndDropOptions(DragAndDropOptions.DragAndDropTarget target, DragAndDropOptions.DragAndDropMethod method)
extends Record
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumstatic interface -
Constructor Summary
ConstructorsConstructorDescriptionDragAndDropOptions(DragAndDropOptions.DragAndDropTarget target, DragAndDropOptions.DragAndDropMethod method) Creates an instance of aDragAndDropOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.method()Returns the value of themethodrecord component.target()Returns the value of thetargetrecord component.static DragAndDropOptionsstatic DragAndDropOptionsto(org.openqa.selenium.WebElement element) toString()Returns a string representation of this record class.usingJS()
-
Constructor Details
-
DragAndDropOptions
public DragAndDropOptions(DragAndDropOptions.DragAndDropTarget target, DragAndDropOptions.DragAndDropMethod method) Creates an instance of aDragAndDropOptionsrecord class.- Parameters:
target- the value for thetargetrecord componentmethod- the value for themethodrecord component
-
-
Method Details
-
to
-
to
-
usingJS
-
usingSeleniumActions
-
getTarget
-
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). -
target
Returns the value of thetargetrecord component.- Returns:
- the value of the
targetrecord component
-
method
Returns the value of themethodrecord component.- Returns:
- the value of the
methodrecord component
-