Add comments to orEqual()

This commit is contained in:
Clement Pang 2021-07-24 09:10:46 +08:00
parent 9496e12861
commit 9af401b205

View File

@ -165,7 +165,11 @@ public class KeySelector {
}
/**
* Returns the {@code or-equal} parameter of this {@code KeySelector}. For internal use.
* Returns the orEqual parameter for this {@code KeySelector}. See the
* {@link #KeySelector(byte[], boolean, int)} KeySelector constructor}
* for more details.
*
* @return the {@code or-equal} parameter of this {@code KeySelector}.
*/
public boolean orEqual() {
return orEqual;