Package com.hp.lft.sdk.web
Class NumericFieldDescription.Init<T extends NumericFieldDescription.Init<T>>
java.lang.Object
com.hp.lft.sdk.DescriptionBase.Init<T>
com.hp.lft.sdk.web.WebBaseDescription.Init<T>
com.hp.lft.sdk.web.WebElementDescription.Init<T>
com.hp.lft.sdk.web.FormFieldDescription.Init<T>
com.hp.lft.sdk.web.EditFieldBaseDescription.Init<T>
com.hp.lft.sdk.web.EditFieldDescription.Init<T>
com.hp.lft.sdk.web.NumericFieldDescription.Init<T>
- Direct Known Subclasses:
- NumericFieldDescription.Builder,- SliderDescription.Init
- Enclosing class:
- NumericFieldDescription
protected abstract static class NumericFieldDescription.Init<T extends NumericFieldDescription.Init<T>>
extends EditFieldDescription.Init<T>
Helper class for NumericFieldDescription.Builder.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbuild()Returns the built description instance (builder pattern).defaultNumericValue(Double defaultNumericValue) Initializes the initial value of the object, which is set when the object is reset.Initializes the maximum value that can be entered in the field.Initializes the minimum value that can be entered in the field.numericValue(Double numericValue) Initializes the current value in the number field.Methods inherited from class com.hp.lft.sdk.web.EditFieldDescription.InitdefaultValue, defaultValue, maxLength, pattern, pattern, rowsCountMethods inherited from class com.hp.lft.sdk.web.EditFieldBaseDescription.Initenabled, maxCharsInLine, placeholder, placeholder, readOnly, required, value, valueMethods inherited from class com.hp.lft.sdk.web.FormFieldDescription.Inittype, typeMethods inherited from class com.hp.lft.sdk.web.WebElementDescription.InitaccessibilityName, accessibilityName, cssSelector, cssSelector, role, role, xpath, xpathMethods inherited from class com.hp.lft.sdk.web.WebBaseDescription.InitabsoluteLocation, absoluteLocation, absoluteLocation, attribute, attribute, attributes, className, className, id, id, innerHTML, innerHTML, innerText, innerText, location, location, location, name, name, outerHTML, outerHTML, outerText, outerText, size, size, size, style, style, styles, tagName, tagName, title, title, visibleMethods inherited from class com.hp.lft.sdk.DescriptionBase.Initindex, objectProperties, self, vri, vri
- 
Constructor Details- 
Initprotected Init()
 
- 
- 
Method Details- 
buildDescription copied from class:DescriptionBase.InitReturns the built description instance (builder pattern).- Overrides:
- buildin class- EditFieldDescription.Init<T extends NumericFieldDescription.Init<T>>
- Returns:
- The built description instance (builder pattern).
 
- 
numericValueInitializes the current value in the number field.- Parameters:
- numericValue- the current value in the number field.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
defaultNumericValueInitializes the initial value of the object, which is set when the object is reset.- Parameters:
- defaultNumericValue- the initial value of the object, which is set when the object is reset.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
minInitializes the minimum value that can be entered in the field.- Parameters:
- min- the minimum value that can be entered in the field.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
maxInitializes the maximum value that can be entered in the field.- Parameters:
- max- the maximum value that can be entered in the field.
- Returns:
- the description instance with the update state (builder pattern).
 
 
-