Example usage for java.io Serializable clone

List of usage examples for java.io Serializable clone

Introduction

In this page you can find the example usage for java.io Serializable clone.

Prototype

@HotSpotIntrinsicCandidate
protected native Object clone() throws CloneNotSupportedException;

Source Link

Document

Creates and returns a copy of this object.

Usage

From source file:org.jasig.jpa.CacheKey.java

public static CacheKey build(String source, Serializable... key) {
    return new CacheKey(source, key.clone());
}