Uses of Interface
com.sun.jdi.Type

Packages that use Type
Package
Description
This is the core package of the Java Debug Interface (JDI), it defines mirrors for values, types, and the target VirtualMachine itself - as well bootstrapping facilities.
  • Uses of Type in com.sun.jdi

    Subinterfaces of Type in com.sun.jdi
    Modifier and Type
    Interface
    Description
    interface 
    Provides access to the class of an array and the type of its components in the target VM.
    interface 
    The type of all primitive boolean values accessed in the target VM.
    interface 
    The type of all primitive byte values accessed in the target VM.
    interface 
    The type of all primitive char values accessed in the target VM.
    interface 
    A mirror of a class in the target VM.
    interface 
    The type of all primitive double values accessed in the target VM.
    interface 
    The type of all primitive float values accessed in the target VM.
    interface 
    The type of all primitive int values accessed in the target VM.
    interface 
    A mirror of an interface in the target VM.
    interface 
    The type of all primitive long values accessed in the target VM.
    interface 
    The type associated with non-object values in a target VM.
    interface 
    The type of an object in a target VM.
    interface 
    The type of all primitive short values accessed in the target VM.
    interface 
    The type of all primitive void values accessed in the target VM.
    Methods in com.sun.jdi that return Type
    Modifier and Type
    Method
    Description
    ArrayType.componentType()
    Returns the component type of this array, as specified in the array declaration.
    Method.returnType()
    Returns the return type, as specified in the declaration of this method.
    Field.type()
    Returns the type of this field.
    LocalVariable.type()
    Returns the type of this variable.
    Value.type()
    Returns the run-time type of this value.
    Methods in com.sun.jdi that return types with arguments of type Type
    Modifier and Type
    Method
    Description
    Method.argumentTypes()
    Returns a list containing the type of each formal parameter of this method.