Interface BuilderParameters

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String RESERVED_PARAMETER_PREFIX
      Constant for a prefix for reserved initialization parameter keys.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Map<java.lang.String,​java.lang.Object> getParameters()
      Returns a map with all parameters defined by this objects.
    • Field Detail

      • RESERVED_PARAMETER_PREFIX

        static final java.lang.String RESERVED_PARAMETER_PREFIX
        Constant for a prefix for reserved initialization parameter keys. If a parameter was set whose key starts with this prefix, it is filtered out before the initialization of a newly created result object. This mechanism allows implementing classes to store specific configuration data in the parameters map which does not represent a property value for the result object.
        See Also:
        Constant Field Values
    • Method Detail

      • getParameters

        java.util.Map<java.lang.String,​java.lang.Object> getParameters()
        Returns a map with all parameters defined by this objects. The keys of the map correspond to concrete properties supported by the Configuration implementation class the builder produces. The values are the corresponding property values. The return value must not be null.
        Returns:
        a map with builder parameters