Interface Patchable<T>

Type Parameters:
T - the argument type.

public interface Patchable<T>
Marks as the object is patchable.
  • Method Summary

    Modifier and Type
    Method
    Description
    <S extends T>
    T
    patch(S patch)
    Patch this bean with the specified bean.
  • Method Details

    • patch

      <S extends T> T patch(S patch)
      Patch this bean with the specified bean.
      Type Parameters:
      S - the type of patching object.
      Parameters:
      patch - the patching object.
      Returns:
      the patched object, used to chain calls.