com.hp.lft.sdk.java

Class SpinBoxDescription.Init<T extends SpinBoxDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • value

        public T value(StringProperty value)
        Initializes the spin box value.
        Parameters:
        value - a StringProperty or RegExpProperty representing the spin box value.
        Returns:
        the description instance with the updated state (builder pattern).
      • value

        public T value(java.lang.String value)
        Initializes the spin box value.
        Parameters:
        value - the spin box value.
        Returns:
        the description instance with the updated state (builder pattern).
      • maximum

        public T maximum(StringProperty max)
        Initializes the maximum value of the spin box.
        Parameters:
        max - a StringProperty or RegExpProperty representing the maximum value of the spin box.
        Returns:
        the description instance with the updated state (builder pattern).
      • maximum

        public T maximum(java.lang.String max)
        Initializes the maximum value of the spin box.
        Parameters:
        max - the maximum value of the spin box.
        Returns:
        the description instance with the updated state (builder pattern).
      • minimum

        public T minimum(StringProperty min)
        Initializes the minimum value of the spin box.
        Parameters:
        min - a StringProperty or RegExpProperty representing the minimum value of the spin box.
        Returns:
        the description instance with the updated state (builder pattern).
      • minimum

        public T minimum(java.lang.String min)
        Initializes the minimum value of the spin box.
        Parameters:
        min - the minimum value of the spin box.
        Returns:
        the description instance with the updated state (builder pattern).