| Package | Description |
|---|---|
| org.netbeans.validation.api.ui |
| Modifier and Type | Method and Description |
|---|---|
static ValidationStrategy |
ValidationStrategy.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationStrategy[] |
ValidationStrategy.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ValidationGroup.add(javax.swing.JComboBox box,
ValidationStrategy strategy,
Validator<javax.swing.ComboBoxModel> validator)
Add a combo box using the passed validation strategy and validator
|
void |
ValidationGroup.add(javax.swing.JComboBox box,
ValidationStrategy strategy,
Validator<java.lang.String>... builtIns)
Add a combo box to be validated with the passed validation strategy
using the passed validators
|
void |
ValidationGroup.add(javax.swing.text.JTextComponent comp,
ValidationStrategy strategy,
Validator<javax.swing.text.Document> validator)
Add a text component to be validated with ValidationStrategy.DEFAULT
using the passed validator
|
void |
ValidationGroup.add(javax.swing.text.JTextComponent comp,
ValidationStrategy strategy,
Validator<java.lang.String>... builtIns)
Add a text control to be validated with the passed validation strategy
using the passed validators
|