public enum SeleniumWComponentWebProperties extends Enum<SeleniumWComponentWebProperties>
| Enum Constant and Description |
|---|
ATTRIBUTE_ACCESSIBLE_TEXT
HTML attribute which holds the accessibleText property of a
WComponent.
|
ATTRIBUTE_HTML_VALUE
HTML attribute which holds the input's value when it is native HTML.
|
ATTRIBUTE_LABEL_FAUX_FOR
HTML attribute which holds the id of the element that a WLabel is "for" when the labelled WComponent is not a labellable element.
|
ATTRIBUTE_LABEL_FOR
HTML attribute which holds the ID of the element that a label is 'for'.
|
ATTRIBUTE_LABEL_FOR_READ_ONLY
HTML attribute which holds the ID of the element that a label is 'for' when the label is for a read-only element.
|
ATTRIBUTE_MAX_LENGTH
The HTML attribute which holds the maxlength property of an Input WComponent.
|
ATTRIBUTE_MIN_LENGTH
The HTML attribute which holds the minLength property of an Input
WComponent.
|
ATTRIBUTE_WRAPPED_INPUT_TYPE
HTML attribute which holds the type of input if the component is not
a native HTML form-bound element.
|
ATTRIBUTE_WRAPPED_NAME
HTML attribute which holds an Input WComponent's name if the
component is not a native HTML form-bound element.
|
ATTRIBUTE_WRAPPED_VALUE
HTML attribute which holds an Input WComponent's value if the
component is not a native HTML form-bound element.
|
CLASS_READ_ONLY
Common HTML class attribute value applied to an Input WComponent in a
read-only state.
|
CLASS_READONLY_CHECKED
Common HTML class attribute value applied to a checkable Input WComponent in a
read-only state when it is selected.
|
CLASS_REQUIRED
HTML class attribute value applied to fieldsets in which at least one field is mandatory.
|
ID_SUFFIX
ID suffix used on wrapped inputs.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SeleniumWComponentWebProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeleniumWComponentWebProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeleniumWComponentWebProperties ATTRIBUTE_MIN_LENGTH
public static final SeleniumWComponentWebProperties ATTRIBUTE_ACCESSIBLE_TEXT
public static final SeleniumWComponentWebProperties ATTRIBUTE_LABEL_FOR
public static final SeleniumWComponentWebProperties ATTRIBUTE_LABEL_FAUX_FOR
public static final SeleniumWComponentWebProperties ATTRIBUTE_LABEL_FOR_READ_ONLY
public static final SeleniumWComponentWebProperties ATTRIBUTE_WRAPPED_NAME
public static final SeleniumWComponentWebProperties ATTRIBUTE_WRAPPED_VALUE
public static final SeleniumWComponentWebProperties ATTRIBUTE_WRAPPED_INPUT_TYPE
public static final SeleniumWComponentWebProperties ATTRIBUTE_HTML_VALUE
public static final SeleniumWComponentWebProperties ATTRIBUTE_MAX_LENGTH
public static final SeleniumWComponentWebProperties CLASS_READ_ONLY
public static final SeleniumWComponentWebProperties CLASS_READONLY_CHECKED
public static final SeleniumWComponentWebProperties CLASS_REQUIRED
public static final SeleniumWComponentWebProperties ID_SUFFIX
public static SeleniumWComponentWebProperties[] values()
for (SeleniumWComponentWebProperties c : SeleniumWComponentWebProperties.values()) System.out.println(c);
public static SeleniumWComponentWebProperties 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<SeleniumWComponentWebProperties>Copyright © 2018. All rights reserved.