Module javafx.base

Class JavaBeanObjectPropertyBuilder<T>

    • Constructor Detail

      • JavaBeanObjectPropertyBuilder

        public JavaBeanObjectPropertyBuilder()
        Do not use this constructor. It will be deprecated in the next version. Use create() instead.
    • Method Detail

      • create

        public static JavaBeanObjectPropertyBuilder create()
        Creates a new instance of JavaBeanObjectPropertyBuilder.
        Returns:
        the new JavaBeanObjectPropertyBuilder
      • name

        public JavaBeanObjectPropertyBuilder name​(String name)
        Sets the name of the property.
        Parameters:
        name - the name of the property
        Returns:
        a reference to this builder to enable method chaining
      • bean

        public JavaBeanObjectPropertyBuilder bean​(Object bean)
        Sets the Java Bean instance the adapter should connect to.
        Parameters:
        bean - the Java Bean instance
        Returns:
        a reference to this builder to enable method chaining
      • beanClass

        public JavaBeanObjectPropertyBuilder beanClass​(Class<?> beanClass)
        Sets the Java Bean class in which the getter and setter should be searched. This can be useful if the builder should generate adapters for several Java Beans of different types.
        Parameters:
        beanClass - the Java Bean class
        Returns:
        a reference to this builder to enable method chaining
      • getter

        public JavaBeanObjectPropertyBuilder getter​(String getter)
        Sets an alternative name for the getter. This can be omitted if the name of the getter follows Java Bean naming conventions.
        Parameters:
        getter - the alternative name of the getter
        Returns:
        a reference to this builder to enable method chaining
      • setter

        public JavaBeanObjectPropertyBuilder setter​(String setter)
        Sets an alternative name for the setter. This can be omitted if the name of the setter follows Java Bean naming conventions.
        Parameters:
        setter - the alternative name of the setter
        Returns:
        a reference to this builder to enable method chaining
      • getter

        public JavaBeanObjectPropertyBuilder getter​(Method getter)
        Sets the getter method directly. This can be omitted if the name of the getter follows Java Bean naming conventions.
        Parameters:
        getter - the getter
        Returns:
        a reference to this builder to enable method chaining
      • setter

        public JavaBeanObjectPropertyBuilder setter​(Method setter)
        Sets the setter method directly. This can be omitted if the name of the setter follows Java Bean naming conventions.
        Parameters:
        setter - the setter
        Returns:
        a reference to this builder to enable method chaining