配列は複数のフィールドを保持しません。配列は、オブジェクト(またはプリミティブ)のコレクションです。name、id、valueのフィールドを持つオブジェクトの配列が必要なようです。
まずオブジェクトを作成します
public class Element(){
private String name;
private String id;
private String value;
public Element(String name, String id, String value){
this.name = name;
this.id = id;
this.value = value;
}
public String getName(){
return this.name;
}
public String getId(){
return this.id;
}
public String getValue(){
return this.value;
};
}
**オブジェクトを作成したら、そのオブジェクトの配列を作成できます。
Element[] elements = {new Element("first", "1", "Value1"), new Element("second", "2", "Value2") };
配列が作成されると、オブジェクトの配列を操作できます
for(Element element:elements){
System.out.println(element.getName());
System.out.println(element.getId());
System.out.println(element.getValue());
}