getToolTipItems method
Implementation
String getToolTipItems(final double touchedValue) {
switch (touchedValue.toInt()) {
case 2:
return "Target Not From Lime";
case 1:
return "Target Not From Robot";
case 0:
default:
return "Target Usable";
}
}