Class Filters.FamilyFilter

java.lang.Object
com.google.cloud.bigtable.data.v2.models.Filters.FamilyFilter
All Implemented Interfaces:
Serializable
Enclosing class:
Filters

public static final class Filters.FamilyFilter extends Object implements Serializable
See Also:
  • Method Details

    • regex

      public Filters.Filter regex(@Nonnull String regex)
      Matches only cells from columns whose families satisfy the given RE2 regex. For technical reasons, the regex must not contain the `:` character, even if it is not being used as a literal. Note that, since column families cannot contain the new line character `\n`, it is sufficient to use `.` as a full wildcard when matching column family names.
    • exactMatch

      public Filters.Filter exactMatch(@Nonnull String value)
      Matches only cells from columns whose families match the value.