Interface PropertiesAccessorMixin.PropertiesBuilderMixin<T>

    • Method Detail

      • withPut

        default T withPut​(Property aProperty)
        With put.
        Parameters:
        aProperty - the property
        Returns:
        the properties builder
      • withPut

        default T withPut​(java.lang.String aKey,
                          java.lang.String aValue)
        With put.
        Parameters:
        aKey - the key
        aValue - the value
        Returns:
        the properties builder
      • withPutBoolean

        default T withPutBoolean​(java.lang.String aKey,
                                 java.lang.Boolean aValue)
        Sets the Boolean value for the property referred to by the key. As property keys and values are of type String, the Boolean value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Boolean representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutBoolean

        default T withPutBoolean​(java.lang.Object aKey,
                                 java.lang.Boolean aValue)
        Sets the Boolean value for the property referred to by the key. As property keys and values are of type String, the Boolean value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Boolean representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutByte

        default T withPutByte​(java.lang.String aKey,
                              java.lang.Byte aValue)
        Sets the Byte value for the property referred to by the key. As property keys and values are of type String, the Byte value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Byte representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutByte

        default T withPutByte​(java.lang.Object aKey,
                              java.lang.Byte aValue)
        Sets the Byte value for the property referred to by the key. As property keys and values are of type String, the Byte value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Byte representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutDouble

        default T withPutDouble​(java.lang.String aKey,
                                java.lang.Double aValue)
        Sets the Double value for the property referred to by the key. As property keys and values are of type String, the Double value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Double representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutDouble

        default T withPutDouble​(java.lang.Object aKey,
                                java.lang.Double aValue)
        Sets the Double value for the property referred to by the key. As property keys and values are of type String, the Double value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Double representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutFloat

        default T withPutFloat​(java.lang.String aKey,
                               java.lang.Float aValue)
        Sets the Float value for the property referred to by the key. As property keys and values are of type String, the Float value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Float representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutFloat

        default T withPutFloat​(java.lang.Object aKey,
                               java.lang.Float aValue)
        Sets the Float value for the property referred to by the key. As property keys and values are of type String, the Float value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Float representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutInteger

        default T withPutInteger​(java.lang.String aKey,
                                 java.lang.Integer aValue)
        Sets the Integer value for the property referred to by the key. As property keys and values are of type String, the Integer value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Integer representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutInteger

        default T withPutInteger​(java.lang.Object aKey,
                                 java.lang.Integer aValue)
        Sets the Integer value for the property referred to by the key. As property keys and values are of type String, the Integer value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Integer representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutLong

        default T withPutLong​(java.lang.String aKey,
                              java.lang.Long aValue)
        Sets the Long value for the property referred to by the key. As property keys and values are of type String, the Long value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Long representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutLong

        default T withPutLong​(java.lang.Object aKey,
                              java.lang.Long aValue)
        Sets the Long value for the property referred to by the key. As property keys and values are of type String, the Long value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Long representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutShort

        default T withPutShort​(java.lang.String aKey,
                               java.lang.Short aValue)
        Sets the Short value for the property referred to by the key. As property keys and values are of type String, the Short value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Short representation for the String value.
        Returns:
        This instance for further builder method calls.
      • withPutShort

        default T withPutShort​(java.lang.Object aKey,
                               java.lang.Short aValue)
        Sets the Short value for the property referred to by the key. As property keys and values are of type String, the Short value is converted accordingly.
        Parameters:
        aKey - The key for which to retrieve the value.
        aValue - The Short representation for the String value.
        Returns:
        This instance for further builder method calls.