Interface Cloner<T>

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 interface Cloner<T>
An interface for optionally cloning an object, should return the given object if no cloning is required.
  • Method Summary

    Modifier and Type
    Method
    Description
    clone(T t)
     
  • Method Details

    • clone

      T clone(T t)