以下は、AttributeValue クラスのコードです。
@JsonSerialize(include=JsonSerialize.Inclusion.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
public class AttributeValue<T> {
private T value; // value
private Date timestamp; // timestamp
String valueType = null; // class type of the value object
@Deprecated
private int classNumber = 0; // internal
private static Logger s_logger = Logger.getInstance(BEAttributeValue.class);
@JsonProperty("v")
public T getValue() {
if (valueType != null && !value.getClass().getName().equalsIgnoreCase(valueType)) {
value = convert(value, valueType);
}
return value;
}
@JsonProperty("v")
public void setValue(T value) {
this.value = value;
}
private T convert(Object other, String classType) {
T value = null;
if (other != null) {
IJsonMapper mapper = JsonMapperFactory.getInstance().getJsonMapper();
try {
String json = mapper.toJson(other);
Class<T> className = (Class<T>)Class.forName(classType);
value = mapper.toPojo(json, className);
} catch (Exception e) {
s_logger.log(LogLevel.ERROR, "BEAttributeValue::convert(), caught an exception: \n",e.getStackTrace());
}
}
return value;
}
}
問題文:-
今、私はAttributeValue
以下のコードでのリストを反復しようとしています-
for(AttributeValue<?> al: list) {
System.out.println(al.getValue());
}
を検査するとal
、次のように値が表示されLinkedHashMap<K,V>
、印刷するとal.getValue()
、これが得られます-
{predictedCatRev=0;101;1,1;201;2, predictedOvrallRev=77;2,0;1,16;3, sitePrftblty=77;2,0;1671679, topByrGms=12345.67, usrCurncy=1, vbsTopByrGmb=167167.67}
だから私は、私はこのようにそれを繰り返すことができると思っal.getValue
た-Map
for (Map.Entry<Integer, Integer> entry : al.getValue().entrySet()) {
System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
}
entrySet()
しかし、赤い色でコンパイルエラーが発生しています。value
そして、検査中に をどのように繰り返し処理できるかわかりませんLinkedHashMap<K,V>
。
誰でもこれで私を助けることができますか?