Schnittstelle IExceptionTableEntry

Alle bekannten Implementierungsklassen:
ExceptionTableEntry

public interface IExceptionTableEntry
The class represents an entry in the exception table of a ICodeAttribute as specified in the JVM specifications. This interface may be implemented by clients.
Seit:
2.0
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    char[]
    Answer back the catch type name, null if getCatchTypeIndex() returns 0.
    int
    Answer back the catch type index in the constant pool.
    int
    Answer back the end pc of this entry.
    int
    Answer back the handler pc of this entry.
    int
    Answer back the start pc of this entry.
  • Methodendetails

    • getStartPC

      int getStartPC()
      Answer back the start pc of this entry.
      Gibt zurück:
      the start pc of this entry
    • getEndPC

      int getEndPC()
      Answer back the end pc of this entry.
      Gibt zurück:
      the end pc of this entry
    • getHandlerPC

      int getHandlerPC()
      Answer back the handler pc of this entry.
      Gibt zurück:
      the handler pc of this entry
    • getCatchTypeIndex

      int getCatchTypeIndex()
      Answer back the catch type index in the constant pool.
      Gibt zurück:
      the catch type index in the constant pool
    • getCatchType

      char[] getCatchType()
      Answer back the catch type name, null if getCatchTypeIndex() returns 0. This is the case for any exception handler.
      Gibt zurück:
      the catch type name, null if getCatchTypeIndex() returns 0. This is the case for any exception handler