public class

FloatTypeImpl

extends TypeImpl
implements FloatType PrimitiveType
java.lang.Object
   ↳ com.sun.tools.jdi.TypeImpl
     ↳ com.sun.tools.jdi.FloatTypeImpl

Summary

[Expand]
Inherited Fields
From class com.sun.tools.jdi.TypeImpl
Public Methods
String signature()
Returns the JNI-style signature for this type.
String toString()
Returns a string representation of the object.
[Expand]
Inherited Methods
From class com.sun.tools.jdi.TypeImpl
From class java.lang.Object
From interface com.sun.jdi.Mirror
From interface com.sun.jdi.Type

Public Methods

public String signature ()

Returns the JNI-style signature for this type.

For primitive classes the returned signature is the signature of the corresponding primitive type; for example, "I" is returned as the signature of the class represented by TYPE.

Returns
  • the string containing the type signature.

public String toString ()

Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
  • a string representation of the object.