aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/lang/PublicCloneable.java
blob: 57a4bacdb5abf6748eac4b0497dbe418a2bbf3bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package com.yahoo.lang;

/**
 * This interface publicly exposes the clone method.
 * Implement this to allow faster clone.
 *
 * @author bratseth
 */
public interface PublicCloneable<T> extends Cloneable {
    T clone();
}