-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathcore.api
More file actions
69 lines (56 loc) · 4.08 KB
/
Copy pathcore.api
File metadata and controls
69 lines (56 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
public abstract interface annotation class org/mobilenativefoundation/store/core5/ExperimentalStoreApi : java/lang/annotation/Annotation {
}
public final class org/mobilenativefoundation/store/core5/InsertionStrategy : java/lang/Enum {
public static final field APPEND Lorg/mobilenativefoundation/store/core5/InsertionStrategy;
public static final field PREPEND Lorg/mobilenativefoundation/store/core5/InsertionStrategy;
public static final field REPLACE Lorg/mobilenativefoundation/store/core5/InsertionStrategy;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lorg/mobilenativefoundation/store/core5/InsertionStrategy;
public static fun values ()[Lorg/mobilenativefoundation/store/core5/InsertionStrategy;
}
public abstract interface class org/mobilenativefoundation/store/core5/KeyProvider {
public abstract fun fromCollection (Lorg/mobilenativefoundation/store/core5/StoreKey$Collection;Lorg/mobilenativefoundation/store/core5/StoreData$Single;)Lorg/mobilenativefoundation/store/core5/StoreKey$Single;
public abstract fun fromSingle (Lorg/mobilenativefoundation/store/core5/StoreKey$Single;Lorg/mobilenativefoundation/store/core5/StoreData$Single;)Lorg/mobilenativefoundation/store/core5/StoreKey$Collection;
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreData {
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreData$Collection : org/mobilenativefoundation/store/core5/StoreData {
public abstract fun copyWith (Ljava/util/List;)Lorg/mobilenativefoundation/store/core5/StoreData$Collection;
public abstract fun getItems ()Ljava/util/List;
public abstract fun insertItems (Lorg/mobilenativefoundation/store/core5/InsertionStrategy;Ljava/util/List;)Lorg/mobilenativefoundation/store/core5/StoreData$Collection;
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreData$Single : org/mobilenativefoundation/store/core5/StoreData {
public abstract fun getId ()Ljava/lang/Object;
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreKey {
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreKey$Collection : org/mobilenativefoundation/store/core5/StoreKey {
public abstract fun getInsertionStrategy ()Lorg/mobilenativefoundation/store/core5/InsertionStrategy;
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreKey$Collection$Cursor : org/mobilenativefoundation/store/core5/StoreKey$Collection {
public abstract fun getCursor ()Ljava/lang/Object;
public abstract fun getFilters ()Ljava/util/List;
public abstract fun getSize ()I
public abstract fun getSort ()Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreKey$Collection$Page : org/mobilenativefoundation/store/core5/StoreKey$Collection {
public abstract fun getFilters ()Ljava/util/List;
public abstract fun getPage ()I
public abstract fun getSize ()I
public abstract fun getSort ()Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreKey$Filter {
public abstract fun invoke (Ljava/util/List;)Ljava/util/List;
}
public abstract interface class org/mobilenativefoundation/store/core5/StoreKey$Single : org/mobilenativefoundation/store/core5/StoreKey {
public abstract fun getId ()Ljava/lang/Object;
}
public final class org/mobilenativefoundation/store/core5/StoreKey$Sort : java/lang/Enum {
public static final field ALPHABETICAL Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
public static final field NEWEST Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
public static final field OLDEST Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
public static final field REVERSE_ALPHABETICAL Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
public static fun values ()[Lorg/mobilenativefoundation/store/core5/StoreKey$Sort;
}