Home
last modified time | relevance | path

Searched refs:ForeignKeyWithSequence (Results 1 – 1 of 1) sorted by relevance

/frameworks/support/room/runtime/src/main/java/androidx/room/util/
DTableInfo.java158 final List<ForeignKeyWithSequence> ordered = readForeignKeyFieldMappings(cursor); in readForeignKeys()
169 for (ForeignKeyWithSequence key : ordered) { in readForeignKeys()
189 private static List<ForeignKeyWithSequence> readForeignKeyFieldMappings(Cursor cursor) { in readForeignKeyFieldMappings()
195 List<ForeignKeyWithSequence> result = new ArrayList<>(); in readForeignKeyFieldMappings()
198 result.add(new ForeignKeyWithSequence( in readForeignKeyFieldMappings()
508 static class ForeignKeyWithSequence implements Comparable<ForeignKeyWithSequence> { class in TableInfo
514 ForeignKeyWithSequence(int id, int sequence, String from, String to) { in ForeignKeyWithSequence() method in TableInfo.ForeignKeyWithSequence
522 public int compareTo(@NonNull ForeignKeyWithSequence o) { in compareTo()