Package javassist
Interface CodeConverter.ArrayAccessReplacementMethodNames
- All Known Implementing Classes:
CodeConverter.DefaultArrayAccessReplacementMethodNames
- Enclosing class:
CodeConverter
public static interface CodeConverter.ArrayAccessReplacementMethodNames
Interface containing the method names to be used
as array access replacements.
- Version:
- $Revision: 1.16 $
- Author:
- Kabir Khan
-
Method Summary
Modifier and TypeMethodDescriptionReturns the name of a static method with the signature(Ljava/lang/Object;I)Bto replace reading from a byte[].Returns the name of a static method with the signature(Ljava/lang/Object;IB)Vto replace writing to a byte[].charRead()Returns the name of a static method with the signature(Ljava/lang/Object;IC)Vto replace writing to a byte[].Returns the name of a static method with the signature(Ljava/lang/Object;I)Dto replace reading from a double[].Returns the name of a static method with the signature(Ljava/lang/Object;ID)Vto replace writing to a double[].Returns the name of a static method with the signature(Ljava/lang/Object;I)Fto replace reading from a float[].Returns the name of a static method with the signature(Ljava/lang/Object;IF)Vto replace writing to a float[].intRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Ito replace reading from a int[].intWrite()Returns the name of a static method with the signature(Ljava/lang/Object;II)Vto replace writing to a int[].longRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Jto replace reading from a long[].Returns the name of a static method with the signature(Ljava/lang/Object;IJ)Vto replace writing to a long[].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).Returns the name of a static method with the signature(Ljava/lang/Object;ILjava/lang/Object;)Vto replace writing to a Object[] (or any subclass of object).Returns the name of a static method with the signature(Ljava/lang/Object;I)Sto replace reading from a short[].Returns the name of a static method with the signature(Ljava/lang/Object;IS)Vto replace writing to a short[].
-
Method Details
-
byteOrBooleanRead
String byteOrBooleanRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Bto replace reading from a byte[]. -
byteOrBooleanWrite
String byteOrBooleanWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IB)Vto replace writing to a byte[]. -
charRead
String charRead()- Returns:
- the name of a static method with the signature
(Ljava/lang/Object;I)Cto replace reading from a char[].
-
charWrite
String charWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IC)Vto replace writing to a byte[]. -
doubleRead
String doubleRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Dto replace reading from a double[]. -
doubleWrite
String doubleWrite()Returns the name of a static method with the signature(Ljava/lang/Object;ID)Vto replace writing to a double[]. -
floatRead
String floatRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Fto replace reading from a float[]. -
floatWrite
String floatWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IF)Vto replace writing to a float[]. -
intRead
String intRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Ito replace reading from a int[]. -
intWrite
String intWrite()Returns the name of a static method with the signature(Ljava/lang/Object;II)Vto replace writing to a int[]. -
longRead
String longRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Jto replace reading from a long[]. -
longWrite
String longWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IJ)Vto replace writing to a long[]. -
objectRead
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). -
objectWrite
String objectWrite()Returns the name of a static method with the signature(Ljava/lang/Object;ILjava/lang/Object;)Vto replace writing to a Object[] (or any subclass of object). -
shortRead
String shortRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Sto replace reading from a short[]. -
shortWrite
String shortWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IS)Vto replace writing to a short[].
-