aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/lang/PublicCloneable.java
blob: 2dee975e2c0481629202b41d4f1589a317ddcf4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
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();
}