c

cloning

The cloning library is a small, open source (Apache licensed) Java library which deep-clones objects. The objects do not have to implement the Cloneable interface. Effectivelly, this library can clone ANY Java object. It can be used i.e. in cache implementations, if you don't want the cached object to be modified or whenever you want to create a deep copy of an object. Sample usage: You can create a single instance of cloner and use it throughout your application. i.e. Cloner cloner=new Cloner(); ... cloner.deepClone(o); Please check http://robust-it.co.uk/clone/ for more examples (spring integration, immutable objects etc)
https://code.google.com/p/cloning/
Apache License, Version 2.0
文件下载
文件名 操作
cloning-1.8.5.jar 下载
cloning-1.8.5.pom 下载
cloning-1.8.5-sources.jar 下载
Apache Maven
<dependency>
  <groupId>uk.com.robust-it</groupId>
  <artifactId>cloning</artifactId>
  <version>1.8.5</version>
  <type>bundle</type>
</dependency>
Gradle Groovy
implementation 'uk.com.robust-it:cloning:1.8.5'
Gradle Kotlin
implementation("uk.com.robust-it:cloning:1.8.5")
Scala SBT
libraryDependencies += "uk.com.robust-it" % "cloning" % "1.8.5"
Groovy Grape
@Grapes(
  @Grab(group='uk.com.robust-it', module='cloning', version='1.8.5')
)
Apache Ivy
<dependency org="uk.com.robust-it" name="cloning" rev="1.8.5" />
Leiningen
[uk.com.robust-it/cloning "1.8.5"]
Apache Buildr
'uk.com.robust-it:cloning:jar:1.8.5'