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

org.sonar.plugins.html.api.accessibility.AriaProperty Maven / Gradle / Ivy

The newest version!
/*
 * SonarQube HTML
 * Copyright (C) 2010-2025 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the Sonar Source-Available License for more details.
 *
 * You should have received a copy of the Sonar Source-Available License
 * along with this program; if not, see https://sonarsource.com/license/ssal/
 */
package org.sonar.plugins.html.api.accessibility;

import java.util.Arrays;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;

public enum AriaProperty {
  ACTIVEDESCENDANT("aria-activedescendant"),
  ATOMIC("aria-atomic"),
  AUTOCOMPLETE("aria-autocomplete"),
  BRAILLELABEL("aria-braillelabel"),
  BRAILLEROLEDESCRIPTION("aria-brailleroledescription"),
  BUSY("aria-busy"),
  CHECKED("aria-checked"),
  COLCOUNT("aria-colcount"),
  COLINDEX("aria-colindex"),
  COLSPAN("aria-colspan"),
  CONTROLS("aria-controls"),
  CURRENT("aria-current"),
  DESCRIBEDBY("aria-describedby"),
  DESCRIPTION("aria-description"),
  DETAILS("aria-details"),
  DISABLED("aria-disabled"),
  DROPEFFECT("aria-dropeffect"),
  ERRORMESSAGE("aria-errormessage"),
  EXPANDED("aria-expanded"),
  FLOWTO("aria-flowto"),
  GRABBED("aria-grabbed"),
  HASPOPUP("aria-haspopup"),
  HIDDEN("aria-hidden"),
  INVALID("aria-invalid"),
  KEYSHORTCUTS("aria-keyshortcuts"),
  LABEL("aria-label"),
  LABELLEDBY("aria-labelledby"),
  LEVEL("aria-level"),
  LIVE("aria-live"),
  MODAL("aria-modal"),
  MULTILINE("aria-multiline"),
  MULTISELECTABLE("aria-multiselectable"),
  ORIENTATION("aria-orientation"),
  OWNS("aria-owns"),
  PLACEHOLDER("aria-placeholder"),
  POSINSET("aria-posinset"),
  PRESSED("aria-pressed"),
  READONLY("aria-readonly"),
  RELEVANT("aria-relevant"),
  REQUIRED("aria-required"),
  ROLEDESCRIPTION("aria-roledescription"),
  ROWCOUNT("aria-rowcount"),
  ROWINDEX("aria-rowindex"),
  ROWSPAN("aria-rowspan"),
  SELECTED("aria-selected"),
  SETSIZE("aria-setsize"),
  SORT("aria-sort"),
  VALUEMAX("aria-valuemax"),
  VALUEMIN("aria-valuemin"),
  VALUENOW("aria-valuenow"),
  VALUETEXT("aria-valuetext");

  private final String value;

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

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

  private static final Map stringMap = Arrays.stream(values())
    .collect(Collectors.toMap(Enum::toString, Function.identity()));

  public static AriaProperty of(String value) {
    return stringMap.get(value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy