com.hp.lft.sdk.web

Class NumericFieldDescription.Init<T extends NumericFieldDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • numericValue

        public T numericValue(java.lang.Double numericValue)
        Initializes 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).
      • defaultNumericValue

        public T defaultNumericValue(java.lang.Double defaultNumericValue)
        Initializes 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).
      • min

        public T min(java.lang.Double min)
        Initializes 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).
      • max

        public T max(java.lang.Double max)
        Initializes 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).