1package com.google.android.libraries.backup;
2
3/** A predicate that determines whether a given key should be backed up. */
4public interface BackupKeyPredicate {
5
6  /** Returns whether a given key should be backed up. */
7  boolean shouldBeBackedUp(String key);
8}
9