javassist
public interface CodeConverter.ArrayAccessReplacementMethodNames
Version: $Revision: 1.12 $
Method Summary | |
---|---|
String | byteOrBooleanRead()
Returns the name of a static method with the signature
(Ljava/lang/Object;I)B to replace reading from a byte[]. |
String | byteOrBooleanWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;IB)V to replace writing to a byte[]. |
String | charRead() |
String | charWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;IC)V to replace writing to a byte[]. |
String | doubleRead()
Returns the name of a static method with the signature
(Ljava/lang/Object;I)D to replace reading from a double[]. |
String | doubleWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;ID)V to replace writing to a double[]. |
String | floatRead()
Returns the name of a static method with the signature
(Ljava/lang/Object;I)F to replace reading from a float[]. |
String | floatWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;IF)V to replace writing to a float[]. |
String | intRead()
Returns the name of a static method with the signature
(Ljava/lang/Object;I)I to replace reading from a int[]. |
String | intWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;II)V to replace writing to a int[]. |
String | longRead()
Returns the name of a static method with the signature
(Ljava/lang/Object;I)J to replace reading from a long[]. |
String | longWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;IJ)V to replace writing to a long[]. |
String | objectRead()
Returns the name of a static method with the signature
(Ljava/lang/Object;I)Ljava/lang/Object;
to replace reading from a Object[] (or any subclass of object). |
String | objectWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;ILjava/lang/Object;)V
to replace writing to a Object[] (or any subclass of object). |
String | shortRead()
Returns the name of a static method with the signature
(Ljava/lang/Object;I)S to replace reading from a short[]. |
String | shortWrite()
Returns the name of a static method with the signature
(Ljava/lang/Object;IS)V to replace writing to a short[]. |
(Ljava/lang/Object;I)B
to replace reading from a byte[].(Ljava/lang/Object;IB)V
to replace writing to a byte[].Returns: the name of a static method with the signature
(Ljava/lang/Object;I)C
to replace reading from a char[].
(Ljava/lang/Object;IC)V
to replace writing to a byte[].(Ljava/lang/Object;I)D
to replace reading from a double[].(Ljava/lang/Object;ID)V
to replace writing to a double[].(Ljava/lang/Object;I)F
to replace reading from a float[].(Ljava/lang/Object;IF)V
to replace writing to a float[].(Ljava/lang/Object;I)I
to replace reading from a int[].(Ljava/lang/Object;II)V
to replace writing to a int[].(Ljava/lang/Object;I)J
to replace reading from a long[].(Ljava/lang/Object;IJ)V
to replace writing to a long[].(Ljava/lang/Object;I)Ljava/lang/Object;
to replace reading from a Object[] (or any subclass of object).(Ljava/lang/Object;ILjava/lang/Object;)V
to replace writing to a Object[] (or any subclass of object).(Ljava/lang/Object;I)S
to replace reading from a short[].(Ljava/lang/Object;IS)V
to replace writing to a short[].