public class LabelCellFactory
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> |
forListView()
Returns a cell factory that creates a default
LabelListCell. |
static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> |
forListView(javafx.util.Callback<T,java.lang.String> toString)
Returns a cell factory that creates a
LabelListCell that uses the provided Callback
to convert from the generic T type to a String, such that it is rendered appropriately. |
static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> |
forListView(java.text.Format format) |
static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> |
forListView(javafx.scene.text.TextAlignment align) |
static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> |
forListView(javafx.scene.text.TextAlignment align,
java.text.Format format) |
static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> |
forTableColumn()
Returns a cell factory that creates a default
LabelTableCell. |
static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> |
forTableColumn(javafx.util.Callback<T,java.lang.String> toString)
Returns a cell factory that creates a
LabelTreeCell that uses the provided Callback
to convert from the generic T type to a String, such that it is rendered appropriately. |
static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> |
forTableColumn(java.text.Format format) |
static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> |
forTableColumn(javafx.scene.text.TextAlignment align) |
static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> |
forTableColumn(javafx.scene.text.TextAlignment align,
java.text.Format format) |
static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> |
forTreeView()
Returns a cell factory that creates a default
LabelTreeCell. |
static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> |
forTreeView(javafx.util.Callback<T,java.lang.String> toString)
Returns a cell factory that creates a
LabelTableCell that uses the provided Callback
to convert from the generic T type to a String, such that it is rendered appropriately. |
static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> |
forTreeView(java.text.Format format) |
static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> |
forTreeView(javafx.scene.text.TextAlignment align) |
static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> |
forTreeView(javafx.scene.text.TextAlignment align,
java.text.Format format) |
public static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> forListView()
LabelListCell.public static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> forListView(javafx.scene.text.TextAlignment align)
public static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> forListView(java.text.Format format)
public static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> forListView(javafx.scene.text.TextAlignment align,
java.text.Format format)
public static <T> javafx.util.Callback<javafx.scene.control.ListView<T>,javafx.scene.control.ListCell<T>> forListView(javafx.util.Callback<T,java.lang.String> toString)
LabelListCell that uses the provided Callback
to convert from the generic T type to a String, such that it is rendered appropriately.toString - A Callback that converts an instance of type T to a String, for rendering
in the LabelCellFactory.public static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> forTreeView()
LabelTreeCell.public static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> forTreeView(javafx.scene.text.TextAlignment align)
public static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> forTreeView(java.text.Format format)
public static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> forTreeView(javafx.scene.text.TextAlignment align,
java.text.Format format)
public static <T> javafx.util.Callback<javafx.scene.control.TreeView<T>,javafx.scene.control.TreeCell<T>> forTreeView(javafx.util.Callback<T,java.lang.String> toString)
LabelTableCell that uses the provided Callback
to convert from the generic T type to a String, such that it is rendered appropriately.toString - A Callback that converts an instance of type T to a String, for rendering
in the TableCell.public static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> forTableColumn()
LabelTableCell.public static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> forTableColumn(javafx.scene.text.TextAlignment align)
public static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> forTableColumn(java.text.Format format)
public static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> forTableColumn(javafx.scene.text.TextAlignment align,
java.text.Format format)
public static <S,T> javafx.util.Callback<javafx.scene.control.TableColumn<S,T>,javafx.scene.control.TableCell<S,T>> forTableColumn(javafx.util.Callback<T,java.lang.String> toString)
LabelTreeCell that uses the provided Callback
to convert from the generic T type to a String, such that it is rendered appropriately.toString - A Callback that converts an instance of type T to a String, for rendering
in the TreeCell.