HBASE-12834 Promote ScanType to LimitedPrivate

This commit is contained in:
tedyu 2015-01-09 15:35:14 -08:00
parent 4bfd35aabc
commit 988cba762a
1 changed files with 4 additions and 1 deletions

View File

@ -17,12 +17,15 @@
*/
package org.apache.hadoop.hbase.regionserver;
import org.apache.hadoop.hbase.HBaseInterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceStability;
/**
* Enum to distinguish general scan types.
*/
@InterfaceAudience.Private
@InterfaceAudience.LimitedPrivate({HBaseInterfaceAudience.COPROC, HBaseInterfaceAudience.PHOENIX})
@InterfaceStability.Evolving
public enum ScanType {
COMPACT_DROP_DELETES,
COMPACT_RETAIN_DELETES,