@Exported public static interface Connector.IntegerArgument extends Connector.Argument
| Modifier and Type | Method and Description | 
|---|---|
| int | intValue()Return the value of the argument as a int. | 
| boolean | isValid(int value)Performs basic sanity check of argument. | 
| boolean | isValid(String value)Performs basic sanity check of argument. | 
| int | max()The upper bound for the value. | 
| int | min()The lower bound for the value. | 
| void | setValue(int value)Sets the value of the argument. | 
| String | stringValueOf(int value)Return the string representation of the  valueparameter. | 
description, label, mustSpecify, name, setValue, valuevoid setValue(int value)
isValid(int)
 before setting it; invalid values will throw an exception
 when the connection is established - for example,
 on LaunchingConnector.launch(java.util.Map<java.lang.String, ? extends com.sun.jdi.connect.Connector.Argument>)boolean isValid(String value)
isValid in interface Connector.Argumenttrue if value represents an int that is
 min() <= value <= max()boolean isValid(int value)
String stringValueOf(int value)
value
 parameter.
 Does not set or examine the current value of this
 instance.int intValue()
isValid(String) should be called on
 Connector.Argument.value() to check its validity.  If it is invalid
 the int returned by this method is undefined.int max()
int min()
 Copyright © 1999, 2025, Oracle and/or its affiliates.  All rights reserved.