public enum HtmlRoleValues extends Enum<HtmlRoleValues>
Enum Constant and Description |
---|
ALERT |
DIALOG |
DOCUMENT |
GROUP |
MENU |
NAVIGATION |
PRESENTATION |
PROGRESSBAR |
TAB |
TABLIST |
TABPANEL |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static HtmlRoleValues |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlRoleValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlRoleValues ALERT
public static final HtmlRoleValues DIALOG
public static final HtmlRoleValues DOCUMENT
public static final HtmlRoleValues GROUP
public static final HtmlRoleValues MENU
public static final HtmlRoleValues NAVIGATION
public static final HtmlRoleValues PRESENTATION
public static final HtmlRoleValues PROGRESSBAR
public static final HtmlRoleValues TAB
public static final HtmlRoleValues TABLIST
public static final HtmlRoleValues TABPANEL
public static HtmlRoleValues[] values()
for (HtmlRoleValues c : HtmlRoleValues.values()) System.out.println(c);
public static HtmlRoleValues valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<HtmlRoleValues>
Copyright © 2002–2022 The Apache Software Foundation. All rights reserved.