Change method naming : ScanResult.getBinaryCursor to ScanResult.getCursorAsBytes

This commit is contained in:
Jungtaek Lim
2014-03-05 21:30:36 +09:00
parent d9813a09dc
commit e1f50b5fae
5 changed files with 9 additions and 9 deletions

View File

@@ -45,7 +45,7 @@ public class ScanResult<T> {
return SafeEncoder.encode(cursor);
}
public byte[] getBinaryCursor() {
public byte[] getCursorAsBytes() {
return cursor;
}