Uses of Class
java.lang.Double
-
Packages that use Double 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.stream 支持元素流功能性操作的类,例如集合上的map-reduce转换。javafx.beans.binding javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,以及一些实现。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.cell 所述javafx.scene.control.cell
包是所有细胞相关的类的位置,比所述核心类如其他Cell
,IndexedCell
,ListCell
,TreeCell
,和TableCell
。javafx.scene.layout 提供类来支持用户界面布局。javafx.scene.shape 提供一组2D类,用于定义和执行与二维几何相关的对象的操作。javafx.util.converter 此包用于JavaFX的标准字符串转换器。javax.management.openmbean 提供打开的数据类型和Open MBean描述符类。 -
-
Uses of Double in java.lang
Fields in java.lang with type parameters of type Double Modifier and Type Field 描述 static Class<Double>
Double. TYPE
所述Class
实例表示基本类型double
。Methods in java.lang that return Double Modifier and Type 方法 描述 static Double
Double. valueOf(double d)
返回表示指定的double
值的Double
实例。static Double
Double. valueOf(String s)
返回一个Double
对象,该对象保存由参数字符串s
表示的double
值。Methods in java.lang with parameters of type Double Modifier and Type 方法 描述 int
Double. compareTo(Double anotherDouble)
数值比较两个Double
对象。 -
Uses of Double in java.util
Methods in java.util that return Double Modifier and Type 方法 描述 default Double
PrimitiveIterator.OfDouble. next()
返回迭代中的下一个元素。Method parameters in java.util with type arguments of type Double Modifier and Type 方法 描述 default void
PrimitiveIterator.OfDouble. forEachRemaining(Consumer<? super Double> action)
对每个剩余元素执行给定的操作,直到所有元素都被处理或动作引发异常。default void
Spliterator.OfDouble. forEachRemaining(Consumer<? super Double> action)
在当前线程中依次执行每个剩余元素的给定操作,直到所有元素都被处理或动作引发异常。default boolean
Spliterator.OfDouble. tryAdvance(Consumer<? super Double> action)
如果剩下的元素存在,执行给定的操作,返回true
; 否则返回false
。 -
Uses of Double in java.util.stream
Methods in java.util.stream that return types with arguments of type Double Modifier and Type 方法 描述 static <T> Collector<T,?,Double>
Collectors. averagingDouble(ToDoubleFunction<? super T> mapper)
返回产生应用于输入元素的双值函数的算术平均值的Collector
。static <T> Collector<T,?,Double>
Collectors. averagingInt(ToIntFunction<? super T> mapper)
返回一个产生应用于输入元素的整数值函数的算术平均值的Collector
。static <T> Collector<T,?,Double>
Collectors. averagingLong(ToLongFunction<? super T> mapper)
返回产生应用于输入元素的长值函数的算术平均值的Collector
。Stream<Double>
DoubleStream. boxed()
返回一个由这个流的元素组成的Stream
,装箱到Double
。static <T> Collector<T,?,Double>
Collectors. summingDouble(ToDoubleFunction<? super T> mapper)
返回一个产生应用于输入元素的双值函数之和的Collector
。 -
Uses of Double in javafx.beans.binding
Methods in javafx.beans.binding that return Double Modifier and Type 方法 描述 Double
DoubleExpression. getValue()
Methods in javafx.beans.binding that return types with arguments of type Double Modifier and Type 方法 描述 ObjectExpression<Double>
DoubleExpression. asObject()
创建一个ObjectExpression
,其值为DoubleExpression
。Method parameters in javafx.beans.binding with type arguments of type Double Modifier and Type 方法 描述 static DoubleBinding
Bindings. createDoubleBinding(Callable<Double> func, Observable... dependencies)
助手功能创建一个自定义的DoubleBinding
。 -
Uses of Double in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Double Modifier and Type 方法 描述 ObjectProperty<Double>
DoubleProperty. asObject()
创建一个ObjectProperty
双向绑定到这个DoubleProperty
。ReadOnlyObjectProperty<Double>
ReadOnlyDoubleProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyDoubleProperty
。Method parameters in javafx.beans.property with type arguments of type Double Modifier and Type 方法 描述 static DoubleProperty
DoubleProperty. doubleProperty(Property<Double> property)
返回一个DoubleProperty
,它包装一个Property
并双向绑定到它。 -
Uses of Double in javafx.css
Constructors in javafx.css with parameters of type Double Constructor 描述 SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Double initialValue)
SimpleStyleableDoubleProperty
的构造SimpleStyleableDoubleProperty
。SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Double initialValue)
SimpleStyleableDoubleProperty
的构造SimpleStyleableDoubleProperty
。 -
Uses of Double in javafx.scene.control
Methods in javafx.scene.control that return Double Modifier and Type 方法 描述 Double
ResizeFeaturesBase. getDelta()
返回在resize操作中添加或删除的水平空间量。Methods in javafx.scene.control that return types with arguments of type Double Modifier and Type 方法 描述 StringConverter<Double>
Slider. getLabelFormatter()
获取属性labelFormatter的值。ObjectProperty<StringConverter<Double>>
Slider. labelFormatterProperty()
用于格式化主要刻度的标签的功能。Method parameters in javafx.scene.control with type arguments of type Double Modifier and Type 方法 描述 void
Slider. setLabelFormatter(StringConverter<Double> value)
设置属性labelFormatter的值。Constructors in javafx.scene.control with parameters of type Double Constructor 描述 ResizeFeatures(TableView<S> table, TableColumn<S,?> column, Double delta)
创建此类的实例,提供的TableView,TableColumn和delta值被设置并存储在此不可变实例中。ResizeFeatures(TreeTableView<S> treeTable, TreeTableColumn<S,?> column, Double delta)
创建此类的实例,提供的TreeTableView,TreeTableColumn和delta值被设置并存储在此不可变实例中。ResizeFeaturesBase(TableColumnBase<S,?> column, Double delta)
创建此类的实例,其中提供的TableColumnBase和delta值被设置并存储在此不可变实例中。 -
Uses of Double in javafx.scene.control.cell
Methods in javafx.scene.control.cell that return types with arguments of type Double Modifier and Type 方法 描述 static <S> Callback<TableColumn<S,Double>,TableCell<S,Double>>
ProgressBarTableCell. forTableColumn()
提供一个ProgressBar
,允许从0.0到1.0的容易显示数字值。static <S> Callback<TableColumn<S,Double>,TableCell<S,Double>>
ProgressBarTableCell. forTableColumn()
提供一个ProgressBar
,允许从0.0到1.0的容易显示数字值。static <S> Callback<TreeTableColumn<S,Double>,TreeTableCell<S,Double>>
ProgressBarTreeTableCell. forTreeTableColumn()
提供一个ProgressBar
,允许从0.0到1.0轻松地显示数字值。static <S> Callback<TreeTableColumn<S,Double>,TreeTableCell<S,Double>>
ProgressBarTreeTableCell. forTreeTableColumn()
提供一个ProgressBar
,允许从0.0到1.0的容易显示数字值。Methods in javafx.scene.control.cell with parameters of type Double Modifier and Type 方法 描述 void
ProgressBarTableCell. updateItem(Double item, boolean empty)
updateItem方法不应该被开发人员调用,但它是开发人员覆盖的最佳方式,以允许它们自定义单元格的视觉效果。void
ProgressBarTreeTableCell. updateItem(Double item, boolean empty)
updateItem方法不应该被开发人员调用,但它是开发人员覆盖的最佳方式,以允许它们自定义单元格的视觉效果。 -
Uses of Double in javafx.scene.layout
Methods in javafx.scene.layout that return Double Modifier and Type 方法 描述 static Double
AnchorPane. getBottomAnchor(Node child)
如果设置,返回小孩的底部锚约束。static Double
AnchorPane. getLeftAnchor(Node child)
如果设置,返回小孩的左锚约束。static Double
AnchorPane. getRightAnchor(Node child)
如果设置,返回小孩的右侧锚点约束。static Double
AnchorPane. getTopAnchor(Node child)
如果设置,返回小孩的顶部锚约束。Methods in javafx.scene.layout that return types with arguments of type Double Modifier and Type 方法 描述 List<Double>
BorderStrokeStyle. getDashArray()
定义表示短划线段长度的数组。Methods in javafx.scene.layout with parameters of type Double Modifier and Type 方法 描述 static void
AnchorPane. setBottomAnchor(Node child, Double value)
设置锚定窗格包含的小孩的底部锚点。static void
AnchorPane. setLeftAnchor(Node child, Double value)
设置锚定窗格所包含的小孩的左侧锚点。static void
AnchorPane. setRightAnchor(Node child, Double value)
为锚定窗格包含的小孩设置正确的锚点。static void
AnchorPane. setTopAnchor(Node child, Double value)
设置锚定窗格包含的小孩的顶部锚点。Constructor parameters in javafx.scene.layout with type arguments of type Double Constructor 描述 BorderStrokeStyle(StrokeType type, StrokeLineJoin lineJoin, StrokeLineCap lineCap, double miterLimit, double dashOffset, List<Double> dashArray)
创建一个新的BorderStrokeStyle。 -
Uses of Double in javafx.scene.shape
Methods in javafx.scene.shape that return types with arguments of type Double Modifier and Type 方法 描述 ObservableList<Double>
Polygon. getPoints()
获取Polygon
顶点的坐标。ObservableList<Double>
Polyline. getPoints()
获取PolyLine
段的坐标。ObservableList<Double>
Shape. getStrokeDashArray()
定义表示短划线段长度的数组。 -
Uses of Double in javafx.util.converter
Methods in javafx.util.converter that return Double Modifier and Type 方法 描述 Double
DoubleStringConverter. fromString(String value)
将提供的字符串转换为由特定转换器定义的对象。Methods in javafx.util.converter with parameters of type Double Modifier and Type 方法 描述 String
DoubleStringConverter. toString(Double value)
将提供的对象转换为其字符串形式。 -
Uses of Double in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Double Modifier and Type Field 描述 static SimpleType<Double>
SimpleType. DOUBLE
TheSimpleType
instance describing values whose Java class name isjava.lang.Double
.
-