Я написал все классы, чтобы лучше понять, чего я пытаюсь достичь. У меня проблема с зацикливанием или есть какой-то другой вариант ... то, что я смущен, в настоящее время у меня установлен индекс на 0. Как выполнить il oop через список и выполнить функцию
if(empgrouping = group-A){use group-A position and ID}
else
if(empgrouping = group-B){use group-B position and ID}
private Employeesset employeesset (String personal, String empgrouping) throws Exception{
Employeesset emp = new Employeesset();
Details details = employeeconfig.getempdepts().get(0);
if(emp.flagistrue()&&empgrouping.equals(“group-A”){
emp.setemplgroup(empgrouping);
emp.setposition(“”);
emp.setidentification(“”);
}else{
// choose group b or c//
—————————————————
“employee_details”:[
{“Employees “: ”group-A“,
“Position “: ”management“,
“ID “: ”333iisdsa“,
“Environments” :
[
"name":"Shyam",
"name":"Bob",
"name":"Jai"
]} ,
{"Employees “: ”group-B”,
“Position “: ”management“,
“ID “: ”4455iisdf“,
“Environments” :
[
"name”:”sam”,
"name”:”loki”,
"name”:”avenger”
]},
{"Employees “: ”group-c“,
“Position “: ”management“,
“ID “: ”234kkdk“,
“Environments” : [
"name”:”super”,
"name”:”kam”,
"name”:”mike”
]}
]
————————————————
public static class Details{
@Jsonproperty(“Employees”)
String emptype;
@Jsonproperty(“Position”)
String position;
@Jsonproperty(“ID”)
String identification;
@Jsonproperty(“environments”)
List<Environments> environments;
//Getters and setters//
———————————
public class employeeconfig{
@Jsonproperty(“employee_details”);
List<Details> empdepts;
//getters and setters//
—————————————
public class Employeesset{
private employee;
private position;
private identification;
//getters and setters//