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

com.hubspot.chrome.devtools.client.core.domstorage.Item Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.domstorage;

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

/**
 * DOM Storage item.
 */
public class Item {
  private List value;

  @JsonCreator
  public Item(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