Java Debug Interface

com.sun.jdi.connect
インタフェース Connector.SelectedArgument

すべてのスーパーインタフェース:
Connector.Argument, Serializable
含まれているインタフェース:
Connector

public static interface Connector.SelectedArgument
extends Connector.Argument

値が選択肢のリストから選択された String である、Connector 引数の仕様と値です。


メソッドの概要
 List<String> choices()
          引数に指定できる値を返します。
 boolean isValid(String value)
          引数の基本的な妥当性検査を実行します。
 
インタフェース com.sun.jdi.connect.Connector.Argument から継承されたメソッド
description, label, mustSpecify, name, setValue, value
 

メソッドの詳細

choices

List<String> choices()
引数に指定できる値を返します。

戻り値:
StringList

isValid

boolean isValid(String value)
引数の基本的な妥当性検査を実行します。

定義:
インタフェース Connector.Argument 内の isValid
戻り値:
値が choices() に含まれている場合は true

Java Debug Interface