You can't treat variable names as runtime data. Runtime data itself should be held as a variable. Create a custom data structure to group the two variables representing the name and the value.
E.g.
class Variable implements Comparable<Variable> {
private String name;
private int value;
public Variable(String name, int value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public int getValue() {
return value;
}
@Override
public int compareTo(Variable other) {
return value < other.value ? -1 : value > other.value ? 1 : 0;
}
@Override
public String toString() {
return name + "-" + value;
}
}
Which you can use as follows:
Variable A = new Variable("A", 3);
Variable B = new Variable("B", 5);
Variable C = new Variable("C", 1);
List<Variable> variables = Arrays.asList(A, B, C);
Variable max = Collections.max(variables);
System.out.println(max); // B-5
It's also more OO-ish.
I'd only give the class name Variable a bit more sensible name to reflect whatever information it actually represents. E.g. Score or whatever.