CommonPref Interface実装

This commit is contained in:
ろむねこ 2023-12-11 10:38:50 +09:00
parent d10990e337
commit e37328e1f5
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,5 +1,17 @@
package one.nem.lacerta.source.pref.repository;
import java.util.List;
public interface Common {
// さまざまな用途で使うPref
String getStringValue(String key);
void setStringValue(String key, String value);
boolean isExist(String key);
void remove(String key);
List<String> getExistKeys();
}