Java Debug Interface

com.sun.jdi
インタフェース StringReference

すべてのスーパーインタフェース:
Mirror, ObjectReference, Value

public interface StringReference
extends ObjectReference

ターゲット VM の文字列オブジェクトです。StringReference は、ターゲット VM の文字列固有の情報に追加アクセスできる ObjectReference です。

導入されたバージョン:
1.3

フィールドの概要
 
インタフェース com.sun.jdi.ObjectReference から継承されたフィールド
INVOKE_NONVIRTUAL, INVOKE_SINGLE_THREADED
 
メソッドの概要
 String value()
          StringReference を String として返します。
 
インタフェース com.sun.jdi.ObjectReference から継承されたメソッド
disableCollection, enableCollection, entryCount, equals, getValue, getValues, hashCode, invokeMethod, isCollected, owningThread, referenceType, setValue, uniqueID, waitingThreads
 
インタフェース com.sun.jdi.Value から継承されたメソッド
type
 
インタフェース com.sun.jdi.Mirror から継承されたメソッド
toString, virtualMachine
 

メソッドの詳細

value

String value()
StringReference を String として返します。返される文字列は、ミラー化された文字列と等価ですが、クライアント VM 内のエンティティで、ほかの文字列と同様に操作できます。

戻り値:
文字列値

Java Debug Interface