Interface AccumuloConfiguration.PropertyFilter

  • All Superinterfaces:
    com.google.common.base.Predicate<String>
    Enclosing class:
    AccumuloConfiguration

    @Deprecated
    public static interface AccumuloConfiguration.PropertyFilter
    extends com.google.common.base.Predicate<String>
    Deprecated.
    since 1.7.0; use Predicate instead.
    A filter for properties, based on key. WARNING: Do not remove this filter; it is required for MockConfiguration
    • Method Detail

      • accept

        boolean accept​(String key)
        Deprecated.
        Determines whether to accept a property based on its key.
        Parameters:
        key - property key
        Returns:
        true to accept property (pass filter)
      • apply

        default boolean apply​(String s)
        Deprecated.
        Specified by:
        apply in interface com.google.common.base.Predicate<String>