-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStorageInterface.java
More file actions
42 lines (24 loc) · 925 Bytes
/
StorageInterface.java
File metadata and controls
42 lines (24 loc) · 925 Bytes
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
package com.askquickly;
import anywheresoftware.b4a.BA.Hide;
public interface StorageInterface
{
public boolean containsKey(String key);
public void clearAll();
public void clear(String key);
public void putByte(String key, byte value);
public void putInt(String key, int value);
public void putLong(String key, long value);
public void putBoolean(String key, boolean value);
public void putFloat(String key, float value);
public void putDouble(String key, double value);
public void putstrings(String key, String value);
public Object get(String key);
public byte getByte(String key);
public int getInt(String key);
public long getLong(String key);
public boolean getBoolean(String key);
public float getFloat(String key);
public double getDouble(String key);
public String getString(String key);
public long getLastModified();
}