All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.selenium.devtools.v88.domsnapshot.model.Rectangle Maven / Gradle / Ivy

package org.openqa.selenium.devtools.v88.domsnapshot.model;

import org.openqa.selenium.Beta;
import org.openqa.selenium.json.JsonInput;

public class Rectangle {

    private final java.util.List rectangle;

    public Rectangle(java.util.List rectangle) {
        this.rectangle = java.util.Objects.requireNonNull(rectangle, "Missing value for Rectangle");
    }

    private static Rectangle fromJson(JsonInput input) {
        return input.read(new com.google.common.reflect.TypeToken>() {
        }.getType());
    }

    public String toString() {
        return rectangle.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy