Annotation Interface FieldBuilder.RangeInput

Enclosing class:
FieldBuilder<T>

@Retention(RUNTIME) @Target(METHOD) @Documented public static @interface FieldBuilder.RangeInput
Specifies how a Java bean property should be edited using a RangeInput.
See Also:
  • Element Details

    • implementation

      Class<? extends RangeInput> implementation
      Get the sub-type of RangeInput that will edit the property.

      This property allows custom widget subclasses to be used.

      The specified type must have a public constructor that takes either no arguments, or one FieldBuilderContext.

      Returns:
      field type
      Default:
      com.vaadin.flow.component.html.RangeInput.class
    • styleProperties

      String[] styleProperties
      Specify CSS properties to be set via Style.set().

      The array value consists of name, value pairs. If the array has odd length, the last element is ignored.

      Returns:
      zero or more style property name, value pairs
      See Also:
      Default:
      {}
    • ariaLabel

      String ariaLabel
      Get the value desired for the ariaLabel property.
      Returns:
      desired ariaLabel property value
      See Also:
      Default:
      ""
    • ariaLabelledBy

      String ariaLabelledBy
      Get the value desired for the ariaLabelledBy property.
      Returns:
      desired ariaLabelledBy property value
      See Also:
      Default:
      ""
    • addClassNames

      String[] addClassNames
      Add the specified class names.
      Returns:
      zero or more class names to add
      See Also:
      Default:
      {}
    • enabled

      boolean enabled
      Get the value desired for the enabled property.
      Returns:
      desired enabled property value
      See Also:
      Default:
      true
    • height

      String height
      Get the value desired for the height property.
      Returns:
      desired height property value
      See Also:
      Default:
      ""
    • id

      String id
      Get the value desired for the id property.
      Returns:
      desired id property value
      See Also:
      Default:
      ""
    • max

      double max
      Get the value desired for the max property.
      Returns:
      desired max property value
      See Also:
      Default:
      100.0
    • maxHeight

      String maxHeight
      Get the value desired for the maxHeight property.
      Returns:
      desired maxHeight property value
      See Also:
      Default:
      ""
    • maxWidth

      String maxWidth
      Get the value desired for the maxWidth property.
      Returns:
      desired maxWidth property value
      See Also:
      Default:
      ""
    • min

      double min
      Get the value desired for the min property.
      Returns:
      desired min property value
      See Also:
      Default:
      0.0
    • minHeight

      String minHeight
      Get the value desired for the minHeight property.
      Returns:
      desired minHeight property value
      See Also:
      Default:
      ""
    • minWidth

      String minWidth
      Get the value desired for the minWidth property.
      Returns:
      desired minWidth property value
      See Also:
      Default:
      ""
    • orientation

      Get the value desired for the orientation property.
      Returns:
      desired orientation property value
      See Also:
      Default:
      HORIZONTAL
    • readOnly

      boolean readOnly
      Get the value desired for the readOnly property.
      Returns:
      desired readOnly property value
      See Also:
      Default:
      false
    • requiredIndicatorVisible

      boolean requiredIndicatorVisible
      Get the value desired for the requiredIndicatorVisible property.
      Returns:
      desired requiredIndicatorVisible property value
      See Also:
      Default:
      false
    • step

      Class<? extends Double> step
      Get the class to instantiate for the step property.
      Returns:
      desired step property value type
      See Also:
      Default:
      java.lang.Double.class
    • tabIndex

      int tabIndex
      Get the value desired for the tabIndex property.
      Returns:
      desired tabIndex property value
      See Also:
      Default:
      0
    • valueChangeMode

      ValueChangeMode valueChangeMode
      Get the value desired for the valueChangeMode property.
      Returns:
      desired valueChangeMode property value
      See Also:
      Default:
      ON_CHANGE
    • valueChangeTimeout

      int valueChangeTimeout
      Get the value desired for the valueChangeTimeout property.
      Returns:
      desired valueChangeTimeout property value
      See Also:
      Default:
      400
    • visible

      boolean visible
      Get the value desired for the visible property.
      Returns:
      desired visible property value
      See Also:
      Default:
      true
    • width

      String width
      Get the value desired for the width property.
      Returns:
      desired width property value
      See Also:
      Default:
      ""