Uses of Class
javafx.util.StringConverter
-
Packages that use StringConverter 软件包 描述 javafx.beans.binding javafx.beans.property 程序包javafx.beans.property定义只读属性和可写属性,以及一些实现。javafx.scene.chart JavaFX用户界面提供了一组图表组件,这是一种非常方便的数据可视化方式。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.cell 所述javafx.scene.control.cell包是所有细胞相关的类的位置,比所述核心类如其他Cell,IndexedCell,ListCell,TreeCell,和TableCell。javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置javafx.util.converter 此包用于JavaFX的标准字符串转换器。 -
-
Uses of StringConverter in javafx.beans.binding
Methods in javafx.beans.binding with parameters of type StringConverter Modifier and Type 方法 描述 static <T> voidBindings. bindBidirectional(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter)在String-Property和另一个Property使用指定的StringConverter生成双向绑定(或“反向绑定”)进行转换。 -
Uses of StringConverter in javafx.beans.property
Methods in javafx.beans.property with parameters of type StringConverter Modifier and Type 方法 描述 <T> voidStringProperty. bindBidirectional(Property<T> other, StringConverter<T> converter)在这个StringProperty和另一个任意属性之间创建双向绑定。 -
Uses of StringConverter in javafx.scene.chart
Subclasses of StringConverter in javafx.scene.chart Modifier and Type Class 描述 static classNumberAxis.DefaultFormatterNumberAxis的默认数字格式化程序,与自动量程保持同步,并适当地格式化值。Methods in javafx.scene.chart that return StringConverter Modifier and Type 方法 描述 StringConverter<T>ValueAxis. getTickLabelFormatter()获取属性tickLabelFormatter的值。Methods in javafx.scene.chart that return types with arguments of type StringConverter Modifier and Type 方法 描述 ObjectProperty<StringConverter<T>>ValueAxis. tickLabelFormatterProperty()StringConverter用于格式化刻度线标签。Methods in javafx.scene.chart with parameters of type StringConverter Modifier and Type 方法 描述 voidValueAxis. setTickLabelFormatter(StringConverter<T> value)设置属性tickLabelFormatter的值。 -
Uses of StringConverter in javafx.scene.control
Fields in javafx.scene.control declared as StringConverter Modifier and Type Field 描述 static StringConverter<String>TextFormatter. IDENTITY_STRING_CONVERTER该字符串转换器将文本转换为相同的String值。Methods in javafx.scene.control that return StringConverter Modifier and Type 方法 描述 StringConverter<T>ChoiceBox. getConverter()获取属性转换器的值。StringConverter<T>ComboBox. getConverter()获取属性转换器的值。StringConverter<LocalDate>DatePicker. getConverter()获取属性转换器的值。StringConverter<T>SpinnerValueFactory. getConverter()获取属性转换器的值。StringConverter<Double>Slider. getLabelFormatter()获取属性labelFormatter的值。StringConverter<V>TextFormatter. getValueConverter()值之间的转换器和文本。Methods in javafx.scene.control that return types with arguments of type StringConverter Modifier and Type 方法 描述 ObjectProperty<StringConverter<T>>ChoiceBox. converterProperty()允许一种方式来指定如何表示项目列表中的对象。ObjectProperty<StringConverter<T>>ComboBox. converterProperty()ObjectProperty<StringConverter<LocalDate>>DatePicker. converterProperty()将输入文本转换为类型为LocalDate的对象,反之亦然。ObjectProperty<StringConverter<T>>SpinnerValueFactory. converterProperty()ObjectProperty<StringConverter<Double>>Slider. labelFormatterProperty()用于格式化主要刻度的标签的功能。Methods in javafx.scene.control with parameters of type StringConverter Modifier and Type 方法 描述 voidChoiceBox. setConverter(StringConverter<T> value)设置属性转换器的值。voidComboBox. setConverter(StringConverter<T> value)设置属性转换器的值。voidDatePicker. setConverter(StringConverter<LocalDate> value)设置属性转换器的值。voidSpinnerValueFactory. setConverter(StringConverter<T> newValue)设置属性转换器的值。voidSlider. setLabelFormatter(StringConverter<Double> value)设置属性labelFormatter的值。Constructors in javafx.scene.control with parameters of type StringConverter Constructor 描述 TextFormatter(StringConverter<V> valueConverter)使用提供的值转换器创建一个新的格式化器。TextFormatter(StringConverter<V> valueConverter, V defaultValue)使用提供的值转换器和默认值创建一个新的格式化器。TextFormatter(StringConverter<V> valueConverter, V defaultValue, UnaryOperator<TextFormatter.Change> filter)使用提供的过滤器,值转换器和默认值创建一个新的格式化器。 -
Uses of StringConverter in javafx.scene.control.cell
Methods in javafx.scene.control.cell with parameters of type StringConverter Modifier and Type 方法 描述 static <T> Callback<ListView<T>,ListCell<T>>CheckBoxListCell. forListView(Callback<T,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)创建用于ListView控件的单元格工厂。static <T> Callback<ListView<T>,ListCell<T>>ChoiceBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)创建一个ChoiceBox单元格工厂,用于ListView控件。static <T> Callback<ListView<T>,ListCell<T>>ChoiceBoxListCell. forListView(StringConverter<T> converter, T... items)创建一个ChoiceBox单元格工厂,用于ListView控件。static <T> Callback<ListView<T>,ListCell<T>>ComboBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)创建ComboBox单元格工厂用于ListView控件。static <T> Callback<ListView<T>,ListCell<T>>ComboBoxListCell. forListView(StringConverter<T> converter, T... items)创建ComboBox单元格工厂,用于ListView控件。static <T> Callback<ListView<T>,ListCell<T>>TextFieldListCell. forListView(StringConverter<T> converter)提供TextField,允许在单元格双击时或当调用ListView.edit(int)时编辑单元格内容。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>CheckBoxTableCell. forTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)创建一个电池厂 ,用于TableColumn电池厂 。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>ChoiceBoxTableCell. forTableColumn(StringConverter<T> converter, ObservableList<T> items)创建一个ChoiceBox单元格工厂,用于TableColumn控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>ChoiceBoxTableCell. forTableColumn(StringConverter<T> converter, T... items)创建一个ChoiceBox单元格工厂,用于TableColumn控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>ComboBoxTableCell. forTableColumn(StringConverter<T> converter, ObservableList<T> items)创建ComboBox单元格工厂用于TableColumn控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>ComboBoxTableCell. forTableColumn(StringConverter<T> converter, T... items)创建ComboBox单元格工厂,用于TableColumn控件。static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>TextFieldTableCell. forTableColumn(StringConverter<T> converter)提供TextField,允许在双击单元格时调用单元格内容,或者调用TableView.edit(int, javafx.scene.control.TableColumn)时。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>CheckBoxTreeTableCell. forTreeTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)创建一个用于TreeTableColumn电池厂的电池厂 。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>ChoiceBoxTreeTableCell. forTreeTableColumn(StringConverter<T> converter, ObservableList<T> items)创建一个ChoiceBox单元格工厂,用于TreeTableColumn控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>ChoiceBoxTreeTableCell. forTreeTableColumn(StringConverter<T> converter, T... items)创建一个ChoiceBox单元格工厂用于TreeTableColumn控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>ComboBoxTreeTableCell. forTreeTableColumn(StringConverter<T> converter, ObservableList<T> items)创建ComboBox单元格工厂用于TreeTableColumn控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>ComboBoxTreeTableCell. forTreeTableColumn(StringConverter<T> converter, T... items)创建ComboBox单元格工厂用于TreeTableColumn控件。static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>TextFieldTreeTableCell. forTreeTableColumn(StringConverter<T> converter)提供TextField,允许在单元格双击时或当调用TreeTableView.edit(int, javafx.scene.control.TreeTableColumn)时编辑单元格内容。static <T> Callback<TreeView<T>,TreeCell<T>>CheckBoxTreeCell. forTreeView(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty, StringConverter<TreeItem<T>> converter)创建一个用于TreeView控件的单元格工厂。static <T> Callback<TreeView<T>,TreeCell<T>>ChoiceBoxTreeCell. forTreeView(StringConverter<T> converter, ObservableList<T> items)创建一个ChoiceBox单元格工厂,用于TreeView控件。static <T> Callback<TreeView<T>,TreeCell<T>>ChoiceBoxTreeCell. forTreeView(StringConverter<T> converter, T... items)创建一个ChoiceBox单元格工厂用于TreeView控件。static <T> Callback<TreeView<T>,TreeCell<T>>ComboBoxTreeCell. forTreeView(StringConverter<T> converter, ObservableList<T> items)创建ComboBox单元格工厂用于TreeView控件。static <T> Callback<TreeView<T>,TreeCell<T>>ComboBoxTreeCell. forTreeView(StringConverter<T> converter, T... items)创建ComboBox单元格工厂,用于TreeView控件。static <T> Callback<TreeView<T>,TreeCell<T>>TextFieldTreeCell. forTreeView(StringConverter<T> converter)提供TextField,允许在双击单元格时或当调用TreeView.edit(javafx.scene.control.TreeItem)时编辑单元格内容。voidCheckBoxListCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidCheckBoxTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidCheckBoxTreeCell. setConverter(StringConverter<TreeItem<T>> value)设置要在此单元格中使用的StringConverter。voidCheckBoxTreeTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidChoiceBoxListCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidChoiceBoxTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidChoiceBoxTreeCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidChoiceBoxTreeTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidComboBoxListCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidComboBoxTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidComboBoxTreeCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidComboBoxTreeTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidTextFieldListCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidTextFieldTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidTextFieldTreeCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。voidTextFieldTreeTableCell. setConverter(StringConverter<T> value)设置要在此单元格中使用的StringConverter。 -
Uses of StringConverter in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return StringConverter Modifier and Type 方法 描述 protected StringConverter<Color>ColorPickerSkin. getConverter()子类负责获取转换器。protected StringConverter<T>ComboBoxListViewSkin. getConverter()子类负责获取转换器。protected abstract StringConverter<T>ComboBoxPopupControl. getConverter()子类负责获取转换器。protected StringConverter<LocalDate>DatePickerSkin. getConverter()子类负责获取转换器。 -
Uses of StringConverter in javafx.util.converter
-