DOC

com.dominikcebula.cloning : kostaskougios-cloning

Maven & Gradle

Jan 31, 2020
0 stars

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. Effectively, 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. This version contains a workaround for Java 8 Lambda Cloning Issue (not a proper solution).

Table Of Contents

Latest Version

Download com.dominikcebula.cloning : kostaskougios-cloning Javadoc & API Documentation - Latest Versions:

All Versions

Download com.dominikcebula.cloning : kostaskougios-cloning Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.10.x

How to open Javadoc JAR file in web browser

  1. Rename the file kostaskougios-cloning-1.10.1.1-javadoc.jar to kostaskougios-cloning-1.10.1.1-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder kostaskougios-cloning-1.10.1.1-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "kostaskougios-cloning-1.10.1.1-sources.jar" -d "kostaskougios-cloning-1.10.1.1-javadoc" -subpackages 

Advertisement