org.apache.hadoop.hbase.coprocessor.example
Interface BulkDeleteProtocol.DeleteType

Enclosing interface:
BulkDeleteProtocol

public static interface BulkDeleteProtocol.DeleteType


Field Summary
static byte COLUMN
          Delete full column(s).
static byte FAMILY
          Delete full family(s).
static byte ROW
          Delete full row
static byte VERSION
          Delete one or more version(s) of column(s).
 

Field Detail

ROW

static final byte ROW
Delete full row

See Also:
Constant Field Values

FAMILY

static final byte FAMILY
Delete full family(s). Which family(s) to be deleted will be determined by the Scan. Scan need to select all the families which need to be deleted.

See Also:
Constant Field Values

COLUMN

static final byte COLUMN
Delete full column(s). Which column(s) to be deleted will be determined by the Scan. Scan need to select all the qualifiers which need to be deleted.

See Also:
Constant Field Values

VERSION

static final byte VERSION
Delete one or more version(s) of column(s). Which column(s) and version(s) to be deleted will be determined by the Scan. Scan need to select all the qualifiers and its versions which need to be deleted. When a timestamp is passed only one version at that timestamp will be deleted(even if scan fetches many versions)

See Also:
Constant Field Values


Copyright © 2015 The Apache Software Foundation. All Rights Reserved.