I was just wondering whether there\'s a way to make a Java method return multiple values.
I\'m creating an application that uses the jdbc library to work with a data
Why not just return Customer, or create a small class with all the values you want returned in it and return that class?