All Packages Class Hierarchy This Package Previous Next Index
Interface lti.java.jcf.JcfClassInput
- public interface interface JcfClassInput
- extends DataInput
JcfClassInput extends the basic data input functionality in DataInput,
while adding methods to facilitate reading class file specific data types.
-
readCPRef()
- Read the index of a constant pool entry.
-
readIntVerbatim()
- Read an int value (usually bit flags) that is not a magnitude.
-
readShortMax(int)
- Read a short value, where the maximum value that short can have
is less than or equal to maxValue.
-
readShortVerbatim()
- Read a short value (usually bit flags) that is not a magnitude.
readCPRef
public abstract short readCPRef() throws IOException
- Read the index of a constant pool entry.
- Returns:
- s The index of the entry.
readShortVerbatim
public abstract short readShortVerbatim() throws IOException
- Read a short value (usually bit flags) that is not a magnitude.
readShortMax
public abstract short readShortMax(int maxValue) throws IOException
- Read a short value, where the maximum value that short can have
is less than or equal to maxValue.
readIntVerbatim
public abstract int readIntVerbatim() throws IOException
- Read an int value (usually bit flags) that is not a magnitude.
All Packages Class Hierarchy This Package Previous Next Index