mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
CommonPref Interface実装
This commit is contained in:
parent
d10990e337
commit
e37328e1f5
|
@ -1,5 +1,17 @@
|
||||||
package one.nem.lacerta.source.pref.repository;
|
package one.nem.lacerta.source.pref.repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public interface Common {
|
public interface Common {
|
||||||
// さまざまな用途で使うPref
|
// さまざまな用途で使うPref
|
||||||
|
|
||||||
|
String getStringValue(String key);
|
||||||
|
|
||||||
|
void setStringValue(String key, String value);
|
||||||
|
|
||||||
|
boolean isExist(String key);
|
||||||
|
|
||||||
|
void remove(String key);
|
||||||
|
|
||||||
|
List<String> getExistKeys();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user