HBASE-12834 Promote ScanType to LimitedPrivate

This commit is contained in:
tedyu 2015-01-09 15:36:58 -08:00
parent 2ecb4b1b34
commit b421498ce6
1 changed files with 4 additions and 1 deletions

View File

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