com.sun.jdi.connect
Interface Connector.BooleanArgument
- public abstract static interface Connector.BooleanArgument
- extends Connector.Argument
Specification for and value of a Connector argument,
whose value is Boolean. Boolean values are represented
by the localized versions of the strings "true" and "false".
Fields inherited from class java.io.Serializable |
serialVersionUID |
Method Summary |
boolean |
booleanValue()
Return the value of the argument as a boolean. |
boolean |
isValid(java.lang.String value)
Performs basic sanity check of argument. |
void |
setValue(boolean value)
Sets the value of the argument. |
java.lang.String |
stringValueOf(boolean value)
Return the string representation of the value
parameter. |
setValue
public void setValue(boolean value)
- Sets the value of the argument.
isValid
public boolean isValid(java.lang.String value)
- Performs basic sanity check of argument.
- Specified by:
- isValid in interface Connector.Argument
- Returns:
true
if value is a string
representation of a boolean value.- See Also:
stringValueOf(boolean)
stringValueOf
public java.lang.String stringValueOf(boolean value)
- Return the string representation of the
value
parameter.
Does not set or examine the value or the argument.
- Returns:
- the localized String representation of the
boolean value.
booleanValue
public boolean booleanValue()
- Return the value of the argument as a boolean. Since
the argument may not have been set or may have an invalid
value
isValid(String)
should be called on
Connector.Argument.value()
to check its validity. If it is invalid
the boolean returned by this method is undefined.
- Returns:
- the value of the argument as a boolean.