| Package | Description |
|---|---|
| javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
| Modifier and Type | Field and Description |
|---|---|
private java.util.function.UnaryOperator<TextFormatter.Change> |
TextFormatter.filter |
| Modifier and Type | Method and Description |
|---|---|
TextFormatter.Change |
TextFormatter.Change.clone() |
| Modifier and Type | Method and Description |
|---|---|
java.util.function.UnaryOperator<TextFormatter.Change> |
TextFormatter.getFilter()
Filter allows user to intercept and modify any change done to the text content.
|
| Modifier and Type | Method and Description |
|---|---|
private void |
TextInputControl.updateContent(TextFormatter.Change change,
boolean forceNewUndoRecord) |
| Constructor and Description |
|---|
TextFormatter(StringConverter<V> valueConverter,
V defaultValue,
java.util.function.UnaryOperator<TextFormatter.Change> filter)
Creates a new Formatter with the provided filter, value converter and default value.
|
TextFormatter(java.util.function.UnaryOperator<TextFormatter.Change> filter)
Creates a new Formatter with the provided filter.
|