I have the following ArrayList which filled with information from a database
ArrayList<HashMap<String, String>> employeeList;
employeeList = new ArrayList<>();
private static final String TAG_NAME = "name";
public static final String TAG_DESIGNATION = "designation";
Log.d("INICIA ","employeeList= "+employeeList);
In Logcat I get the following:
D/INICIA: employeeList= [{designation=manager, name=rick}]
Everything works fine but I have a doubt how I could access the value manager
that is in the arrayList so I can use it in a condition