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

com.hubspot.chrome.devtools.client.core.accessibility.AXValueNativeSourceType Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonValue;

/**
 * Enum of possible native property sources (as a subtype of a particular AXValueSourceType).
 */
public enum AXValueNativeSourceType {
  FIGCAPTION("figcaption"),

  LABEL("label"),

  LABELFOR("labelfor"),

  LABELWRAPPED("labelwrapped"),

  LEGEND("legend"),

  TABLECAPTION("tablecaption"),

  TITLE("title"),

  OTHER("other");

  private final String value;

  AXValueNativeSourceType(String value) {
    this.value= value;
  }

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

  @Override
  public String toString() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy