I'm trying to use a triple to return multiple values but I get "cannot instantiate the type Triple" I tried multiple things but nothing worked. What is the correct Syntax?
import org.apache.commons.lang3.tuple.Triple;
private static Triple<String, String, String> test() {
Triple<String, String, String> triple = new Triple<>();
...
return triple;
}