Interface DestinationSetter<D,V>

Type Parameters:
D - destination type
V - argument type of the setter

public interface DestinationSetter<D,V>
Represents an operation for setting a value into destination
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(D destination, V value)
    Performs this operation to set the value into destination
  • Method Details

    • accept

      void accept(D destination, V value)
      Performs this operation to set the value into destination
      Parameters:
      destination - the instance of destination
      value - the value from source