Interface ReflectionObjectReader

All Known Implementing Classes:
ReflectionObject

public interface ReflectionObjectReader
  • Method Details

    • readBoolean

      boolean readBoolean(int index)
    • readByte

      byte readByte(int index)
    • readShort

      short readShort(int index)
    • readInt

      int readInt(int index)
    • readLong

      long readLong(int index)
    • readFloat

      float readFloat(int index)
    • readDouble

      double readDouble(int index)
    • readBooleanArray

      boolean[] readBooleanArray(int index)
    • readByteArray

      byte[] readByteArray(int index)
    • readShortArray

      short[] readShortArray(int index)
    • readIntArray

      int[] readIntArray(int index)
    • readLongArray

      long[] readLongArray(int index)
    • readFloatArray

      float[] readFloatArray(int index)
    • readDoubleArray

      double[] readDoubleArray(int index)
    • readStringArray

      String[] readStringArray(int index)
    • readString

      String readString(int index)
    • readObject

      <T> T readObject(int index, Class<? extends T> type)
    • readObjectArray

      <T> T[] readObjectArray(int index, Class<? extends T> type)
    • readEnumConstant

      Enum<?> readEnumConstant(int index, Class<? extends Enum<?>> type)
    • readAnyObject

      Object readAnyObject(int index)