HBASE-19298 CellScanner and CellScannable should be declared as IA.Public
Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
parent
fa9ab3955c
commit
8354a563f7
|
@ -25,7 +25,7 @@ import org.apache.yetus.audience.InterfaceAudience;
|
||||||
* CellScanner rather than say Iterator<Cell>. See CellScanner class comment for why we go
|
* CellScanner rather than say Iterator<Cell>. See CellScanner class comment for why we go
|
||||||
* dumber than java.util.Iterator.
|
* dumber than java.util.Iterator.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Private
|
@InterfaceAudience.Public
|
||||||
public interface CellScannable {
|
public interface CellScannable {
|
||||||
/**
|
/**
|
||||||
* @return A CellScanner over the contained {@link Cell}s
|
* @return A CellScanner over the contained {@link Cell}s
|
||||||
|
|
|
@ -47,8 +47,7 @@ import org.apache.yetus.audience.InterfaceStability;
|
||||||
* <p>Often used reading {@link org.apache.hadoop.hbase.Cell}s written by
|
* <p>Often used reading {@link org.apache.hadoop.hbase.Cell}s written by
|
||||||
* {@link org.apache.hadoop.hbase.io.CellOutputStream}.
|
* {@link org.apache.hadoop.hbase.io.CellOutputStream}.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Private
|
@InterfaceAudience.Public
|
||||||
@InterfaceStability.Unstable
|
|
||||||
public interface CellScanner {
|
public interface CellScanner {
|
||||||
/**
|
/**
|
||||||
* @return the current Cell which may be mutable
|
* @return the current Cell which may be mutable
|
||||||
|
|
Loading…
Reference in New Issue