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

com.hubspot.chrome.devtools.client.core.dom.BackendNodeId 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;

/**
 * Unique DOM node identifier used to reference a node that may not have been pushed to the
 * front-end.
 */
public class BackendNodeId {
  private Integer value;

  @JsonCreator
  public BackendNodeId(Integer value) {
    this.value = value;
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy