Enum Attribute
- java.lang.Object
-
- java.lang.Enum<Attribute>
-
- eu.tsystems.mms.tic.testframework.pageobjects.Attribute
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static AttributevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Attribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLASS
public static final Attribute CLASS
-
ID
public static final Attribute ID
-
NAME
public static final Attribute NAME
-
HREF
public static final Attribute HREF
-
TITLE
public static final Attribute TITLE
-
VALUE
public static final Attribute VALUE
-
STYLE
public static final Attribute STYLE
-
ALT
public static final Attribute ALT
-
SRC
public static final Attribute SRC
-
READONLY
public static final Attribute READONLY
-
DISABLED
public static final Attribute DISABLED
-
ARIA_LABEL
public static final Attribute ARIA_LABEL
-
ARIA_EXPANDED
public static final Attribute ARIA_EXPANDED
-
-
Method Detail
-
values
public static Attribute[] 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 (Attribute c : Attribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Attribute valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Attribute>
-
-