Index of values


C
call [Java]
call "methoddesc" p0 ... pn calls and returns the result of method methoddesc called with parameters pi, where p0 is the instance to call method upon if the method is not static.
cast [Java]
cast "classname" x casts x to an instance of classname.

E
equal [Java]
equal x y returns true if x and y designate the very same reference.

G
get [JavaShortArray]
get a i returns the element at index i in a.
get [JavaReferenceArray]
get a i returns the element at index i in a.
get [JavaLongArray]
get a i returns the element at index i in a.
get [JavaIntArray]
get a i returns the element at index i in a.
get [JavaFloatArray]
get a i returns the element at index i in a.
get [JavaDoubleArray]
get a i returns the element at index i in a.
get [JavaCharArray]
get a i returns the element at index i in a.
get [JavaByteArray]
get a i returns the element at index i in a.
get [JavaBooleanArray]
get a i returns the element at index i in a.
get [JavaArraySignature.T]
get [JavaArray]
get a i returns the element at index i in a.
get [Java]
get "fielddesc" obj retrieves the value of field fielddesc for instance obj.

I
input_line [JavaString]
input_line ch reads a line from channel ch.
instanceof [Java]
instanceof "classname" x returns true if x is an instance of classname or one of its subclasses.
is_not_null [JavaString]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaShortArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaReferenceArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaLongArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaIntArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaFloatArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaDoubleArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaCharArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaByteArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaBooleanArray]
is_not_null x returns false iff x is equal to null.
is_not_null [JavaArraySignature.T]
is_not_null [JavaArray]
is_not_null a returns false iff a is equal to null.
is_not_null [Java]
is_not_null x returns false iff x is equal to null.
is_null [JavaString]
is_null x returns true iff x is equal to null.
is_null [JavaShortArray]
is_null x returns true iff x is equal to null.
is_null [JavaReferenceArray]
is_null x returns true iff x is equal to null.
is_null [JavaLongArray]
is_null x returns true iff x is equal to null.
is_null [JavaIntArray]
is_null x returns true iff x is equal to null.
is_null [JavaFloatArray]
is_null x returns true iff x is equal to null.
is_null [JavaDoubleArray]
is_null x returns true iff x is equal to null.
is_null [JavaCharArray]
is_null x returns true iff x is equal to null.
is_null [JavaByteArray]
is_null x returns true iff x is equal to null.
is_null [JavaBooleanArray]
is_null x returns true iff x is equal to null.
is_null [JavaArraySignature.T]
is_null [JavaArray]
is_null a returns true iff a is equal to null.
is_null [Java]
is_null x returns true iff x is equal to null.

L
length [JavaShortArray]
length a returns the length of a.
length [JavaReferenceArray]
length a returns the length of a.
length [JavaLongArray]
length a returns the length of a.
length [JavaIntArray]
length a returns the length of a.
length [JavaFloatArray]
length a returns the length of a.
length [JavaDoubleArray]
length a returns the length of a.
length [JavaCharArray]
length a returns the length of a.
length [JavaByteArray]
length a returns the length of a.
length [JavaBooleanArray]
length a returns the length of a.
length [JavaArraySignature.T]
length [JavaArray]
length a returns the length of a.
length_sub [JavaArray]
length_sub a i returns the length of the sub array at index i of a.

M
make [JavaShortArray]
make len creates and returns an array of len elements.
make [JavaLongArray]
make len creates and returns an array of len elements.
make [JavaIntArray]
make len creates and returns an array of len elements.
make [JavaFloatArray]
make len creates and returns an array of len elements.
make [JavaDoubleArray]
make len creates and returns an array of len elements.
make [JavaCharArray]
make len creates and returns an array of len elements.
make [JavaByteArray]
make len creates and returns an array of len elements.
make [JavaBooleanArray]
make len creates and returns an array of len elements.
make [Java]
make "constructordesc" p0 ... pn calls constructor constructordesc with parameters pi and returns the created instance.
make_array [Java]
make_array "arraydesc" dim1 ... dimn builds and returns an array with n dimensions.
make_array1 [Java]
make_array1 "arraydesc" dim is similar to make_array, except that only the first dimension of the array is allocated and initialized.

N
not_equal [Java]
not_equal x y returns false if x and y designate the very same reference.
null [JavaString]
The null value.
null [JavaShortArray]
The null value.
null [JavaReferenceArray]
The null value.
null [JavaLongArray]
The null value.
null [JavaIntArray]
The null value.
null [JavaFloatArray]
The null value.
null [JavaDoubleArray]
The null value.
null [JavaCharArray]
The null value.
null [JavaByteArray]
The null value.
null [JavaBooleanArray]
The null value.
null [JavaArraySignature.T]
null [Java]
The null value.

O
of_object [JavaShortArray]
of_object o casts object o to array.
of_object [JavaReferenceArray]
of_object o casts object o to array.
of_object [JavaLongArray]
of_object o casts object o to array.
of_object [JavaIntArray]
of_object o casts object o to array.
of_object [JavaFloatArray]
of_object o casts object o to array.
of_object [JavaDoubleArray]
of_object o casts object o to array.
of_object [JavaCharArray]
of_object o casts object o to array.
of_object [JavaByteArray]
of_object o casts object o to array.
of_object [JavaBooleanArray]
of_object o casts object o to array.
of_object [JavaArraySignature.T]
of_string [JavaString]
of_string s converts the OCaml string s into a Java string.
output_string [JavaString]
output_string ch s prints s onto channel ch.

P
prerr_endline [JavaString]
prerr_endline s prints s followed by a newline character onto the error ouput.
prerr_string [JavaString]
prerr_string s prints s onto the error ouput.
print_endline [JavaString]
print_endline s prints s followed by a newline character onto the standard ouput.
print_string [JavaString]
print_string s prints s onto the standard ouput.
proxy [Java]
proxy "interfacename" impl returns an instance that implements interfacename using the methods provided by impl.

R
read_line [JavaString]
read_line () reads a line from the standard input.

S
set [JavaShortArray]
set a i x changes the element at index i in a to x.
set [JavaReferenceArray]
set a i x changes the element at index i in a to x.
set [JavaLongArray]
set a i x changes the element at index i in a to x.
set [JavaIntArray]
set a i x changes the element at index i in a to x.
set [JavaFloatArray]
set a i x changes the element at index i in a to x.
set [JavaDoubleArray]
set a i x changes the element at index i in a to x.
set [JavaCharArray]
set a i x changes the element at index i in a to x.
set [JavaByteArray]
set a i x changes the element at index i in a to x.
set [JavaBooleanArray]
set a i x changes the element at index i in a to x.
set [JavaArraySignature.T]
set [JavaArray]
set a i x changes the element at index i in a to x.
set [Java]
set "fielddesc" obj x changes the value of field fielddesc for instance obj to x.
synchronized [Java]
synchronized obj (fun () -> ...) is equivalent to the Java code synchronized (obj) { ...

T
throw [Java]
throw x raises the exception instance x (wrapped into a Java_exception on the OCaml side).
to_object [JavaShortArray]
to_object a casts a to a bare object.
to_object [JavaReferenceArray]
to_object a casts a to a bare object.
to_object [JavaLongArray]
to_object a casts a to a bare object.
to_object [JavaIntArray]
to_object a casts a to a bare object.
to_object [JavaFloatArray]
to_object a casts a to a bare object.
to_object [JavaDoubleArray]
to_object a casts a to a bare object.
to_object [JavaCharArray]
to_object a casts a to a bare object.
to_object [JavaByteArray]
to_object a casts a to a bare object.
to_object [JavaBooleanArray]
to_object a casts a to a bare object.
to_object [JavaArraySignature.T]
to_string [JavaString]
to_string s converts the Java string s into an OCaml string.

W
wrap [JavaString]
wrap x wraps the reference x into an option type: Some x if x is not null;, None if x is null.
wrap [Java]
wrap x wraps the reference x into an option type: Some x if x is not null;, None if x is null.
wrap_boolean_array [JavaArray]
wrap_boolean_array2 [JavaArray]
wrap_byte_array [JavaArray]
wrap_byte_array2 [JavaArray]
wrap_char_array [JavaArray]
wrap_char_array2 [JavaArray]
wrap_double_array [JavaArray]
wrap_double_array2 [JavaArray]
wrap_float_array [JavaArray]
wrap_float_array2 [JavaArray]
wrap_int_array [JavaArray]
wrap_int_array2 [JavaArray]
wrap_long_array [JavaArray]
wrap_long_array2 [JavaArray]
wrap_reference_array [JavaArray]
wrap_reference_array2 [JavaArray]
wrap_short_array [JavaArray]
wrap_short_array2 [JavaArray]
wrapped [JavaArray]
wrapped a returns the wrapped array.