Package org.patternfly.component.tooltip
Enum TriggerAria
- java.lang.Object
-
- java.lang.Enum<TriggerAria>
-
- org.patternfly.component.tooltip.TriggerAria
-
- All Implemented Interfaces:
Serializable,Comparable<TriggerAria>
public enum TriggerAria extends Enum<TriggerAria>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description describedBylabelledBynone
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TriggerAriavalueOf(String name)Returns the enum constant of this type with the specified name.static TriggerAria[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
describedBy
public static final TriggerAria describedBy
-
labelledBy
public static final TriggerAria labelledBy
-
none
public static final TriggerAria none
-
-
Field Detail
-
attribute
public final String attribute
-
-
Method Detail
-
values
public static TriggerAria[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TriggerAria c : TriggerAria.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TriggerAria valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-