我有一个结构:
class Level {
protected int id;
protected String title;
protected int levelValue;
}
此结构将从源映射。(Sql,xml或raw)。
注意:我知道我可以在SQLite
或xml files
结构或raw
文件中存储信息。问题是什么 - 这个信息是静态的。因此,此信息仅适用于阅读。没有删除,没有更新,没有插入。一切都是静态的。
所以我想要你的帮助。存储静态信息的最佳方法是什么?