Interface CloneStrategy

  • All Superinterfaces:
    org.springframework.core.Ordered

    public interface CloneStrategy
    extends org.springframework.core.Ordered
    Strategy for cloning objects
    • Field Summary

      • Fields inherited from interface org.springframework.core.Ordered

        HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      <T> boolean canHandle​(T object)
      Returns true, if this strategy implementation can handle the given object, otherwise false.
      <T> T clone​(T objectToClone)
      Clone given object
      • Methods inherited from interface org.springframework.core.Ordered

        getOrder
    • Method Detail

      • canHandle

        <T> boolean canHandle​(T object)
        Returns true, if this strategy implementation can handle the given object, otherwise false.