float、integer、boolean、可能であれば String などの PrimitiveType を返すメソッドを書きたいと思います。ジェネリックを使用したいのですが、行き詰まって解決策が見つかりません。Configparser には必要です。Config から異なる値を取得するために使用します。
現在、次のように表示され、スイッチがこのように機能しないことはわかっていますが、IDが何をしたいのかがわかります。
public class ConfigurationManager extends XmlReader {
private final static String FILE_PATH = "config/config.cfg";
private static Element xml;
public ConfigurationManager() throws IOException {
FileHandle handle = Gdx.files.internal(FILE_PATH);
this.xml = this.parse(handle);
}
public Resolution getResolution() {
Resolution r = new Resolution();
r.height = xml.getFloat("height");
r.width = xml.getFloat("width");
return r;
}
public static <T> T getConfig(Class<T> type, String name) {
if (type.equals(Integer.class)) {
return type.cast(xml.getInt(name));
} else if (type.equals(Float.class)) {
return type.cast(xml.getFloat(name));
} else if (type.equals(Boolean.class)) {
return type.cast(xml.getBoolean(name));
} else if (type.equals(String.class)) {
return type.cast(xml.get(name));
}
throw new AssertionError("Invalid type");
}
}
どうもありがとう