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