Array.setChar
Class Overview | Class Members | 
  This Package | 
All Packages
 public static native void setChar( Object array,
                                   int index,
                                   char c ) throws IllegalArgumentException, ArrayIndexOutOfBoundsException
Parameters
-  array 
-  the array
    
-  index 
-  the index into the array
    
-  value 
-  the new value of the indexed component
    
Description
 Sets the value of the indexed component of the specified array
 object to the specified byte value.
  
Exceptions
 NullPointerException
     If the specified object argument
 is null
    
Exceptions
 IllegalArgumentException
     If the specified object argument
 is not an array, or if the the specified value cannot be converted
 to the underlying array's component type by an identity or a
 primitive widening widening conversion
    
Exceptions
 ArrayIndexOutOfBoundsException
     If the specified index
 argument is negative, or if it is greater than or equal to
 the length of the specified array
    
See Also
     set