クラスがありますData<T>
一般的な属性を持つ
private T value;
次のことを行うためのより良い方法はありますか?
つまり、ジェネリック型をさまざまな形式で返しますか?
public List<String> getValues() {
if (value.getClass() != ArrayList.class)
throw new Exception("Wrong Enum value '%s'", value);
return (ArrayList<String>) value;
//ugly
}
public String getStringValue() {
if (value.getClass() != String.class)
throw new Exception("Wrong value type '%s'", value);
return (String) value;
//ugly
}
public Float getFloatValue() {
if (value.getClass() != Double.class)
throw new Exception("Wrong value type '%s'", value);
return (Float) value;
//ugly
}
public Long getLongValue() {
if (value.getClass() != Double.class)
throw new Exception("Wrong value type '%s'", value);
return (Long) value;
//ugly
}
public T getValue() {
return value;
}
精度、私はデシリアライザーとしてGsonを使用しており、リストを取得するために、各データオブジェクトは異種になります。float
およびlong検出用のアダプターを登録することもできますが、高速または優れたものではありません。
編集:gsonはlongの取得に失敗します:
また:
((Long) d.getValue())
java.lang.Doubleをjava.lang.Longにキャストすることはできません
また
Long.parseLong( d.getValue().toString())
java.lang.NumberFormatException:入力文字列の場合: "212231.0"
LongAdpaterを登録しようとしました
gsonBuilder.registerTypeAdapter(Long.class, new LongAdapter());
private static class LongAdapter implements
JsonSerializer<Long>, JsonDeserializer<Long>
{
@Override public Long deserialize(
JsonElement json,
Type type,
JsonDeserializationContext arg2) throws JsonParseException
{
return json.getAsLong();
}
@Override
public JsonElement serialize(Long l, Type arg1,
JsonSerializationContext arg2) {
return new JsonPrimitive(new Double(l));
}
}
java.lang.IllegalArgumentException:クラスjava.lang.Longのタイプアダプタを登録できません
tsOverflowのedit2:
Data<Float> d1 = new Data<Float>( new Float(6.32));
List<String> l = new ArrayList<String>();
l.add("fr");
l.add("it");
l.add("en");
Data<List<String>> d2 = new Data<List<String>>( l);
Data<Long> d3 = new Data<Long>(new Long(212231));
List<Data> data = new ArrayList<Data>();
data.add(d1);
data.add(d2);
data.add(d3)
new Gson().toJson(data);