That fuck shit the fascists are using
1package org.tm.archive.keyvalue;
2
3import androidx.annotation.NonNull;
4
5interface KeyValueReader {
6 byte[] getBlob(@NonNull String key, byte[] defaultValue);
7 boolean getBoolean(@NonNull String key, boolean defaultValue);
8 float getFloat(@NonNull String key, float defaultValue);
9 int getInteger(@NonNull String key, int defaultValue);
10 long getLong(@NonNull String key, long defaultValue);
11 String getString(@NonNull String key, String defaultValue);
12 boolean containsKey(@NonNull String key);
13}