Method get(Object array, int index)
Return type:
java.lang.Object
Member of:
java.lang.reflect.Array
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
value = Array.get(value, 0);
2
buffer.append( Array.get( array, 0 ) );
3
Class elementClass = Array.get(o, 0).getClass();
4
Class elementClass = Array.get(o, 0).getClass();
5
Object value = Array.get(object, 0);
6
rootWalker.walk(contentHandler, Array.get(value, i), "item", walkedInstances);
7
result.add(Array.get(array, i));
8
list.add(Array.get(collection, i));
9
sb.append(Array.get(array, i).toString());
10
checkDimensions (java.lang.reflect.Array.get (array, i), descriptor, dim);
11
comp1 = Array.get(array1, i);
12
if (!equals(Array.get(obj1,i),Array.get(obj2,i))) return false;
13
obj = Array.get(obj, num(p.car).indexValue());
14
Object value = Array.get(childObject, j);
15
Object o = Array.get (value, i);
16
srcValueOnce = Array.get(srcValue, index);
17
if (Array.get(attributeValue, i) != null)
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.