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

com.hubspot.chrome.devtools.client.core.dom.Quad Maven / Gradle / Ivy

There is a newer version: 94.0.4606.61
Show newest version
package com.hubspot.chrome.devtools.client.core.dom;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.List;

/**
 * An array of quad vertices, x immediately followed by y for each point, points clock-wise.
 */
public class Quad {
  private List value;

  @JsonCreator
  public Quad(List value) {
    this.value = value;
  }

  @JsonValue
  public List getValue() {
    return value;
  }

  @Override
  public String toString() {
    return getValue().toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy