Reports calls to and implementations of the clone() method and uses of java.lang.Cloneable.
Some coding standards prohibit clone() usage, and recommend using a copy constructor or static factory method.
Calls to clone() on arrays are ignored, because that is a common, correct, efficient and compact way to copy an array.