Searched defs:ForeignKey (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/room/common/src/main/java/android/arch/persistence/room/
H A DForeignKey.java46 public @interface ForeignKey { interface
/frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/util/
H A DTableInfo.java57 public final Set<ForeignKey> foreignKeys;
60 public TableInfo(String name, Map<String, Column> columns, Set<ForeignKey> foreignKeys) {
76 Set<ForeignKey> foreignKeys = readForeignKeys(database, tableName);
80 private static Set<ForeignKey> readForeignKeys(SupportSQLiteDatabase database,
82 Set<ForeignKey> foreignKeys = new HashSet<>();
109 foreignKeys.add(new ForeignKey(
293 public static class ForeignKey { class in class:TableInfo
305 public ForeignKey(@NonNull String referenceTable, @NonNull String onDelete, method in class:TableInfo.ForeignKey
320 ForeignKey that = (ForeignKey)
[all...]

Completed in 79 milliseconds