Added javadocs to *Ref about clone() performing a shallow copy. I know, this is obvious and to be expected, but I fell a victim to this anyway, it's a damn thing to debug if you use clone() in hash maps etc. so perhaps it'll help somebody.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1483681 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dawid Weiss 2013-05-17 08:02:59 +00:00
parent 5c77220c72
commit 23cd6d85a3
4 changed files with 28 additions and 1 deletions

View File

@ -119,12 +119,18 @@ public final class BytesRef implements Comparable<BytesRef>,Cloneable {
} }
} }
/**
* Returns a shallow clone of this instance (the underlying bytes are
* <b>not</b> copied and will be shared by both the returned object and this
* object.
*
* @see #deepCopyOf
*/
@Override @Override
public BytesRef clone() { public BytesRef clone() {
return new BytesRef(bytes, offset, length); return new BytesRef(bytes, offset, length);
} }
/** Calculates the hash code as required by TermsHash during indexing. /** Calculates the hash code as required by TermsHash during indexing.
* <p>It is defined as: * <p>It is defined as:
* <pre class="prettyprint"> * <pre class="prettyprint">

View File

@ -71,6 +71,13 @@ public final class CharsRef implements Comparable<CharsRef>, CharSequence, Clone
this.length = chars.length; this.length = chars.length;
} }
/**
* Returns a shallow clone of this instance (the underlying characters are
* <b>not</b> copied and will be shared by both the returned object and this
* object.
*
* @see #deepCopyOf
*/
@Override @Override
public CharsRef clone() { public CharsRef clone() {
return new CharsRef(chars, offset, length); return new CharsRef(chars, offset, length);

View File

@ -56,6 +56,13 @@ public final class IntsRef implements Comparable<IntsRef>, Cloneable {
assert isValid(); assert isValid();
} }
/**
* Returns a shallow clone of this instance (the underlying ints are
* <b>not</b> copied and will be shared by both the returned object and this
* object.
*
* @see #deepCopyOf
*/
@Override @Override
public IntsRef clone() { public IntsRef clone() {
return new IntsRef(ints, offset, length); return new IntsRef(ints, offset, length);

View File

@ -55,6 +55,13 @@ public final class LongsRef implements Comparable<LongsRef>, Cloneable {
assert isValid(); assert isValid();
} }
/**
* Returns a shallow clone of this instance (the underlying longs are
* <b>not</b> copied and will be shared by both the returned object and this
* object.
*
* @see #deepCopyOf
*/
@Override @Override
public LongsRef clone() { public LongsRef clone() {
return new LongsRef(longs, offset, length); return new LongsRef(longs, offset, length);