Interface Property.Putter

  • Enclosing class:
    Property
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public static interface Property.Putter
    Basic interface for putting value onto a map, properties or config.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void put​(java.lang.String key, java.lang.String value)
      Put the property into place.
    • Method Detail

      • put

        void put​(java.lang.String key,
                 java.lang.String value)
        Put the property into place.
        Parameters:
        key - The property key.
        value - The property value.