I have an array of numbers and would like to retrieve one of the values from location \"index\". I\'ve looked at the Java documentation http://java.sun.com/j2se/1.5.0/docs/a
I think you're just looking for:
Point vertex = vertices[index];
At least - if you're not looking for that, please expand on what the difference is between using the array index and what you do want :)