CodeConverter.ArrayAccessReplacementMethodNamespublic static class CodeConverter.DefaultArrayAccessReplacementMethodNames extends Object implements CodeConverter.ArrayAccessReplacementMethodNames
ArrayAccessReplacementMethodNames
interface giving default values for method names to be used for replacing
accesses to array elements.| Constructor | Description |
|---|---|
DefaultArrayAccessReplacementMethodNames() |
| Modifier and Type | Method | Description |
|---|---|---|
String |
byteOrBooleanRead() |
Returns "arrayReadByteOrBoolean" as the name of the static method with the signature
(Ljava/lang/Object;I)B to replace reading from a byte[].
|
String |
byteOrBooleanWrite() |
Returns "arrayWriteByteOrBoolean" as the name of the static method with the signature
(Ljava/lang/Object;IB)V to replace writing to a byte[].
|
String |
charRead() |
Returns "arrayReadChar" as the name of the static method with the signature
(Ljava/lang/Object;I)C to replace reading from a char[].
|
String |
charWrite() |
Returns "arrayWriteChar" as the name of the static method with the signature
(Ljava/lang/Object;IC)V to replace writing to a byte[].
|
String |
doubleRead() |
Returns "arrayReadDouble" as the name of the static method with the signature
(Ljava/lang/Object;I)D to replace reading from a double[].
|
String |
doubleWrite() |
Returns "arrayWriteDouble" as the name of the static method with the signature
(Ljava/lang/Object;ID)V to replace writing to a double[].
|
String |
floatRead() |
Returns "arrayReadFloat" as the name of the static method with the signature
(Ljava/lang/Object;I)F to replace reading from a float[].
|
String |
floatWrite() |
Returns "arrayWriteFloat" as the name of the static method with the signature
(Ljava/lang/Object;IF)V to replace writing to a float[].
|
String |
intRead() |
Returns "arrayReadInt" as the name of the static method with the signature
(Ljava/lang/Object;I)I to replace reading from a int[].
|
String |
intWrite() |
Returns "arrayWriteInt" as the name of the static method with the signature
(Ljava/lang/Object;II)V to replace writing to a int[].
|
String |
longRead() |
Returns "arrayReadLong" as the name of the static method with the signature
(Ljava/lang/Object;I)J to replace reading from a long[].
|
String |
longWrite() |
Returns "arrayWriteLong" as the name of the static method with the signature
(Ljava/lang/Object;IJ)V to replace writing to a long[].
|
String |
objectRead() |
Returns "arrayReadObject" as the name of the 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 "arrayWriteObject" as the name of the 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 "arrayReadShort" as the name of the static method with the signature
(Ljava/lang/Object;I)S to replace reading from a short[].
|
String |
shortWrite() |
Returns "arrayWriteShort" as the name of the static method with the signature
(Ljava/lang/Object;IS)V to replace writing to a short[].
|
public DefaultArrayAccessReplacementMethodNames()
public String byteOrBooleanRead()
byteOrBooleanRead in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String byteOrBooleanWrite()
byteOrBooleanWrite in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String charRead()
charRead in interface CodeConverter.ArrayAccessReplacementMethodNames(Ljava/lang/Object;I)C to replace reading from a char[].public String charWrite()
charWrite in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String doubleRead()
doubleRead in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String doubleWrite()
doubleWrite in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String floatRead()
floatRead in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String floatWrite()
floatWrite in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String intRead()
intRead in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String intWrite()
intWrite in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String longRead()
longRead in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String longWrite()
longWrite in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String objectRead()
objectRead in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String objectWrite()
objectWrite in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String shortRead()
shortRead in interface CodeConverter.ArrayAccessReplacementMethodNamespublic String shortWrite()
shortWrite in interface CodeConverter.ArrayAccessReplacementMethodNamesCopyright © 2018 Shigeru Chiba, www.javassist.org. All rights reserved.