もう1つのオブジェクトを含む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
これは、値のみが設定されているオブジェクトのみを返します。
ここで、プロパティ リストから Property オブジェクトを取得し、paramvalues リストに設定して、完全なオブジェクトを作成したいと考えています。どうすればできますか。2つのリストを反復することは可能ですか?