Interface ReflectionObjectWriter
- All Known Implementing Classes:
ReflectionObject
public interface ReflectionObjectWriter
-
Method Summary
Modifier and TypeMethodDescriptionvoid
writeAnyObject
(int index, Object value) void
writeBoolean
(int index, boolean value) void
writeBooleanArray
(int index, boolean[] array) void
writeByte
(int index, byte value) void
writeByteArray
(int index, byte[] value) void
writeDouble
(int index, double value) void
writeDoubleArray
(int index, double[] value) void
writeEnumConstant
(int index, Enum<?> enumConstant) void
writeFloat
(int index, float value) void
writeFloatArray
(int index, float[] value) void
writeInt
(int index, int value) void
writeIntArray
(int index, int[] value) void
writeLong
(int index, long value) void
writeLongArray
(int index, long[] value) void
writeObject
(int index, Object object) void
writeShort
(int index, short value) void
writeShortArray
(int index, short[] value) void
writeString
(int index, String value) void
writeStringArray
(int index, String[] value)
-
Method Details
-
writeBoolean
void writeBoolean(int index, boolean value) -
writeByte
void writeByte(int index, byte value) -
writeShort
void writeShort(int index, short value) -
writeInt
void writeInt(int index, int value) -
writeLong
void writeLong(int index, long value) -
writeFloat
void writeFloat(int index, float value) -
writeDouble
void writeDouble(int index, double value) -
writeString
-
writeBooleanArray
void writeBooleanArray(int index, boolean[] array) -
writeByteArray
void writeByteArray(int index, byte[] value) -
writeShortArray
void writeShortArray(int index, short[] value) -
writeIntArray
void writeIntArray(int index, int[] value) -
writeLongArray
void writeLongArray(int index, long[] value) -
writeFloatArray
void writeFloatArray(int index, float[] value) -
writeDoubleArray
void writeDoubleArray(int index, double[] value) -
writeStringArray
-
writeObject
-
writeAnyObject
-
writeEnumConstant
-