我有一个包含另一个对象的 java 对象。
public class ParameterValue {
private Property property;
private String PropertyValue;
public static class Property {
private String paramName;
}
}
在我的 util 方法中,我获取列表中的所有属性名称
List<ParameterValue.Property> properties= getAllParameter();
List<ParameterValue> paramValues= getAllParameterValues();
它只返回我只ParameterValue
设置了对象的值。
现在我想从属性列表中获取属性对象并在 paramvalues 列表中设置创建一个完整的对象。我该怎么做。是否可以迭代 2 个列表