The only properties available (specific to Arrays) are really .length, and the index accessor, e.g. [0].
Arrays can be used in the new for loop syntax provided with Java 1.5:
for(String s : new String[]{"a", "b", "c"}){
// Something with s.
}
You can also access an Array as a List, using http://docs.oracle.com/javase/6/docs/api/java/util/Arrays.html#asList%28T...%29 .
Also see the rest of the Arrays class for many other operations that exist to operate specifically on arrays. (Here, we have a class that operates on arrays, rather than the array containing all of the useful properties and methods.)