Package javassist
Interface CodeConverter.ArrayAccessReplacementMethodNames
-
- All Known Implementing Classes:
CodeConverter.DefaultArrayAccessReplacementMethodNames
- Enclosing class:
- CodeConverter
public static interface CodeConverter.ArrayAccessReplacementMethodNamesInterface containing the method names to be used as array access replacements.- Version:
- $Revision: 1.16 $
- Author:
- Kabir Khan
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringbyteOrBooleanRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Bto replace reading from a byte[].java.lang.StringbyteOrBooleanWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IB)Vto replace writing to a byte[].java.lang.StringcharRead()java.lang.StringcharWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IC)Vto replace writing to a byte[].java.lang.StringdoubleRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Dto replace reading from a double[].java.lang.StringdoubleWrite()Returns the name of a static method with the signature(Ljava/lang/Object;ID)Vto replace writing to a double[].java.lang.StringfloatRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Fto replace reading from a float[].java.lang.StringfloatWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IF)Vto replace writing to a float[].java.lang.StringintRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Ito replace reading from a int[].java.lang.StringintWrite()Returns the name of a static method with the signature(Ljava/lang/Object;II)Vto replace writing to a int[].java.lang.StringlongRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Jto replace reading from a long[].java.lang.StringlongWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IJ)Vto replace writing to a long[].java.lang.StringobjectRead()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).java.lang.StringobjectWrite()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).java.lang.StringshortRead()Returns the name of a static method with the signature(Ljava/lang/Object;I)Sto replace reading from a short[].java.lang.StringshortWrite()Returns the name of a static method with the signature(Ljava/lang/Object;IS)Vto replace writing to a short[].
-
-
-
Method Detail
-
byteOrBooleanRead
java.lang.String byteOrBooleanRead()
Returns the name of a static method with the signature(Ljava/lang/Object;I)Bto replace reading from a byte[].
-
byteOrBooleanWrite
java.lang.String byteOrBooleanWrite()
Returns the name of a static method with the signature(Ljava/lang/Object;IB)Vto replace writing to a byte[].
-
charRead
java.lang.String charRead()
- Returns:
- the name of a static method with the signature
(Ljava/lang/Object;I)Cto replace reading from a char[].
-
charWrite
java.lang.String charWrite()
Returns the name of a static method with the signature(Ljava/lang/Object;IC)Vto replace writing to a byte[].
-
doubleRead
java.lang.String doubleRead()
Returns the name of a static method with the signature(Ljava/lang/Object;I)Dto replace reading from a double[].
-
doubleWrite
java.lang.String doubleWrite()
Returns the name of a static method with the signature(Ljava/lang/Object;ID)Vto replace writing to a double[].
-
floatRead
java.lang.String floatRead()
Returns the name of a static method with the signature(Ljava/lang/Object;I)Fto replace reading from a float[].
-
floatWrite
java.lang.String floatWrite()
Returns the name of a static method with the signature(Ljava/lang/Object;IF)Vto replace writing to a float[].
-
intRead
java.lang.String intRead()
Returns the name of a static method with the signature(Ljava/lang/Object;I)Ito replace reading from a int[].
-
intWrite
java.lang.String intWrite()
Returns the name of a static method with the signature(Ljava/lang/Object;II)Vto replace writing to a int[].
-
longRead
java.lang.String longRead()
Returns the name of a static method with the signature(Ljava/lang/Object;I)Jto replace reading from a long[].
-
longWrite
java.lang.String longWrite()
Returns the name of a static method with the signature(Ljava/lang/Object;IJ)Vto replace writing to a long[].
-
objectRead
java.lang.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
java.lang.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
java.lang.String shortRead()
Returns the name of a static method with the signature(Ljava/lang/Object;I)Sto replace reading from a short[].
-
shortWrite
java.lang.String shortWrite()
Returns the name of a static method with the signature(Ljava/lang/Object;IS)Vto replace writing to a short[].
-
-