Uses of Class
java.lang.SafeVarargs
-
Packages that use SafeVarargs 软件包 描述 java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.stream 支持元素流功能性操作的类,例如集合上的map-reduce转换。javafx.scene.control.cell 所述javafx.scene.control.cell
包是所有细胞相关的类的位置,比所述核心类如其他Cell
,IndexedCell
,ListCell
,TreeCell
,和TableCell
。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。 -
-
Uses of SafeVarargs in java.util
Methods in java.util with annotations of type SafeVarargs Modifier and Type 方法 描述 static <T> boolean
Collections. addAll(Collection<? super T> c, T... elements)
将所有指定的元素添加到指定的集合。static <T> List<T>
Arrays. asList(T... a)
返回由指定数组支持的固定大小的列表。static <E extends Enum<E>>
EnumSet<E>EnumSet. of(E first, E... rest)
创建一个最初包含指定元素的枚举集。static <E> List<E>
List. of(E... elements)
返回包含任意数量元素的不可变列表。static <E> Set<E>
Set. of(E... elements)
返回一个包含任意数量元素的不可变集合。static <K,V> Map<K,V>
Map. ofEntries(Map.Entry<? extends K,? extends V>... entries)
返回包含从给定条目提取的键和值的不可变地图。 -
Uses of SafeVarargs in java.util.stream
Methods in java.util.stream with annotations of type SafeVarargs Modifier and Type 方法 描述 static <T> Stream<T>
Stream. of(T... values)
返回其元素是指定值的顺序排序流。 -
Uses of SafeVarargs in javafx.scene.control.cell
Methods in javafx.scene.control.cell with annotations of type SafeVarargs Modifier and Type 方法 描述 static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(StringConverter<T> converter, T... items)
创建一个ChoiceBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(T... items)
创建一个ChoiceBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(StringConverter<T> converter, T... items)
创建ComboBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(T... items)
创建ComboBox单元格工厂,用于ListView
控件。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>>
ChoiceBoxTableCell. forTableColumn(T... items)
创建一个ChoiceBox单元格工厂,用于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>>
ComboBoxTableCell. forTableColumn(T... items)
创建一个ComboBox单元格工厂用于TableColumn
控件。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>>
ChoiceBoxTreeTableCell. forTreeTableColumn(T... items)
创建一个ChoiceBox单元格工厂,用于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>>
ComboBoxTreeTableCell. forTreeTableColumn(T... items)
创建ComboBox单元格工厂,用于TreeTableColumn
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ChoiceBoxTreeCell. forTreeView(StringConverter<T> converter, T... items)
创建一个ChoiceBox单元格工厂,用于TreeView
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ChoiceBoxTreeCell. forTreeView(T... items)
创建一个ChoiceBox单元格工厂用于TreeView
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ComboBoxTreeCell. forTreeView(StringConverter<T> converter, T... items)
创建ComboBox单元格工厂,用于TreeView
控件。static <T> Callback<TreeView<T>,TreeCell<T>>
ComboBoxTreeCell. forTreeView(T... items)
创建ComboBox单元格工厂,用于TreeView
控件。 -
Uses of SafeVarargs in javax.swing
Methods in javax.swing with annotations of type SafeVarargs Modifier and Type 方法 描述 protected void
SwingWorker. publish(V... chunks)
发送数据块到SwingWorker.process(java.util.List<V>)
方法。
-