Class AbstractBuilder<T>

    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.util.AbstractMap

        java.util.AbstractMap.SimpleEntry<K extends java.lang.Object,​V extends java.lang.Object>, java.util.AbstractMap.SimpleImmutableEntry<K extends java.lang.Object,​V extends java.lang.Object>
      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Field Summary

      • Fields inherited from class com.sun.javafx.fxml.BeanAdapter

        GET_PREFIX, IS_PREFIX, PROPERTY_SUFFIX, SET_PREFIX, VALUE_OF_METHOD_NAME
    • Constructor Summary

      Constructors 
      Constructor Description
      AbstractBuilder​(T bean)
      Creates a builder.
      AbstractBuilder​(T bean, java.lang.String... innerElements)
      Creates a builder with inner elements.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T build()  
      java.lang.Object get​(java.lang.Object key)  
      T getBean()
      Gets the bean.
      • Methods inherited from class com.sun.javafx.fxml.BeanAdapter

        coerce, containsKey, entrySet, equals, get, getConstantValue, getGenericListItemType, getGenericMapValueType, getGenericType, getGenericType, getListItemType, getMapValueType, getPropertyModel, getType, getType, hashCode, isDefined, isReadOnly, put, put
      • Methods inherited from class java.util.AbstractMap

        clear, clone, containsValue, isEmpty, keySet, putAll, remove, size, toString, values
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Map

        compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
    • Constructor Detail

      • AbstractBuilder

        public AbstractBuilder​(T bean)
        Creates a builder.
        Parameters:
        bean - the bean
      • AbstractBuilder

        public AbstractBuilder​(T bean,
                               java.lang.String... innerElements)
        Creates a builder with inner elements.
        Parameters:
        bean - the bean
        innerElements - name of inner elements
    • Method Detail

      • getBean

        public T getBean()
        Gets the bean.
        Overrides:
        getBean in class com.sun.javafx.fxml.BeanAdapter
        Returns:
        the bean
      • get

        public java.lang.Object get​(java.lang.Object key)
        Specified by:
        get in interface java.util.Map<java.lang.String,​java.lang.Object>
        Overrides:
        get in class com.sun.javafx.fxml.BeanAdapter
      • build

        public T build()
        Specified by:
        build in interface javafx.util.Builder<T>