Enum UiElement.Properties
- java.lang.Object
-
- java.lang.Enum<UiElement.Properties>
-
- eu.tsystems.mms.tic.testframework.pageobjects.UiElement.Properties
-
- All Implemented Interfaces:
eu.tsystems.mms.tic.testframework.common.IProperties,eu.tsystems.mms.tic.testframework.common.PropertyManagerProvider,java.io.Serializable,java.lang.Comparable<UiElement.Properties>
- Enclosing interface:
- UiElement
public static enum UiElement.Properties extends java.lang.Enum<UiElement.Properties> implements eu.tsystems.mms.tic.testframework.common.IProperties
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECK_RULEDEFAULT_ASSERT_IS_COLLECTORDeprecated.DELAY_AFTER_ACTION_MILLISDELAY_BEFORE_ACTION_MILLISELEMENT_TIMEOUT_SECONDSELEMENT_WAIT_INTERVAL_MSQA_ATTRIBUTE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetDefault()java.lang.StringtoString()static UiElement.PropertiesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UiElement.Properties[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT_ASSERT_IS_COLLECTOR
@Deprecated public static final UiElement.Properties DEFAULT_ASSERT_IS_COLLECTOR
Deprecated.
-
DELAY_BEFORE_ACTION_MILLIS
public static final UiElement.Properties DELAY_BEFORE_ACTION_MILLIS
-
DELAY_AFTER_ACTION_MILLIS
public static final UiElement.Properties DELAY_AFTER_ACTION_MILLIS
-
CHECK_RULE
public static final UiElement.Properties CHECK_RULE
-
ELEMENT_TIMEOUT_SECONDS
public static final UiElement.Properties ELEMENT_TIMEOUT_SECONDS
-
ELEMENT_WAIT_INTERVAL_MS
public static final UiElement.Properties ELEMENT_WAIT_INTERVAL_MS
-
QA_ATTRIBUTE
public static final UiElement.Properties QA_ATTRIBUTE
-
-
Method Detail
-
values
public static UiElement.Properties[] 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 (UiElement.Properties c : UiElement.Properties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiElement.Properties 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()
- Specified by:
toStringin interfaceeu.tsystems.mms.tic.testframework.common.IProperties- Overrides:
toStringin classjava.lang.Enum<UiElement.Properties>
-
getDefault
public java.lang.Object getDefault()
- Specified by:
getDefaultin interfaceeu.tsystems.mms.tic.testframework.common.IProperties
-
-