List of usage examples for java.io Serializable clone
@HotSpotIntrinsicCandidate protected native Object clone() throws CloneNotSupportedException;
From source file:org.jasig.jpa.CacheKey.java
public static CacheKey build(String source, Serializable... key) { return new CacheKey(source, key.clone()); }