Packages

class CqlTransformFilter extends FilterBase

HBase filter for CQL predicates and transformations

The internal processing logic is kept in a delegate filter that will do either filtering, transforming, or both.

Linear Supertypes
FilterBase, Filter, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CqlTransformFilter
  2. FilterBase
  3. Filter
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CqlTransformFilter(delegate: DelegateFilter)

    delegate

    delegate filter

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def filterAllRemaining(): Boolean
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException])
  9. def filterCell(arg0: Cell): ReturnCode
    Definition Classes
    Filter
    Annotations
    @throws(classOf[java.io.IOException])
  10. def filterKeyValue(v: Cell): ReturnCode

    From the Filter javadocs:

    From the Filter javadocs:

    A filter can expect the following call sequence:

    • reset() : reset the filter state before filtering a new row.
    • filterAllRemaining(): true means row scan is over; false means keep going.
    • filterRowKey(byte[],int,int): true means drop this row; false means include.
    • filterKeyValue(Cell): decides whether to include or exclude this KeyValue. See ReturnCode.
    • transform(KeyValue): if the KeyValue is included, let the filter transform the KeyValue.
    • filterRowCells(List): allows direct modification of the final list to be submitted
    • filterRow(): last chance to drop entire row based on the sequence of filter calls. Eg: filter a row if it doesn't contain a specified column.
    Definition Classes
    CqlTransformFilter → Filter
  11. def filterRow(): Boolean
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException])
  12. def filterRowCells(arg0: List[Cell]): Unit
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException])
  13. def filterRowKey(arg0: Cell): Boolean
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  15. def getNextCellHint(arg0: Cell): Cell
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException])
  16. def hasFilterRow(): Boolean
    Definition Classes
    FilterBase → Filter
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  18. def isFamilyEssential(arg0: Array[Byte]): Boolean
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException])
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def isReversed(): Boolean
    Definition Classes
    Filter
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  24. def reset(): Unit
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException])
  25. def setReversed(arg0: Boolean): Unit
    Definition Classes
    Filter
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toByteArray(): Array[Byte]
    Definition Classes
    CqlTransformFilter → FilterBase → Filter
  28. def toString(): String
    Definition Classes
    CqlTransformFilter → FilterBase → AnyRef → Any
  29. def transformCell(v: Cell): Cell
    Definition Classes
    CqlTransformFilter → FilterBase → Filter
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def filterRowKey(arg0: Array[Byte], arg1: Int, arg2: Int): Boolean
    Definition Classes
    FilterBase → Filter
    Annotations
    @throws(classOf[java.io.IOException]) @Deprecated
    Deprecated
  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from FilterBase

Inherited from Filter

Inherited from AnyRef

Inherited from Any

Ungrouped