Uses of Class
java.lang.Double
-
Packages that use Double Package Description java.lang Provides classes that are fundamental to the design of the Java programming language.java.util Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.java.util.stream Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.javafx.beans.binding Provides classes that create and operate on aBinding
that calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.beans.property
defines read-only properties and writable properties, plus a number of implementations.javafx.css Provides API for making properties styleable via CSS and for supporting pseudo-class state.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.javafx.scene.control.cell Thejavafx.scene.control.cell
package is where all cell-related classes are located, other than the core classes such asCell
,IndexedCell
,ListCell
,TreeCell
, andTableCell
.javafx.scene.layout Provides classes to support user interface layout.javafx.scene.shape Provides the set of 2D classes for defining and performing operations on objects related to two-dimensional geometry.javax.management.openmbean Provides the open data types and Open MBean descriptor classes. -
-
Uses of Double in java.lang
Fields in java.lang with type parameters of type Double Modifier and Type Field Description static Class<Double>
Double. TYPE
TheClass
instance representing the primitive typedouble
.Methods in java.lang that return Double Modifier and Type Method Description static Double
Double. valueOf(double d)
Returns aDouble
instance representing the specifieddouble
value.static Double
Double. valueOf(String s)
Returns aDouble
object holding thedouble
value represented by the argument strings
.Methods in java.lang with parameters of type Double Modifier and Type Method Description int
Double. compareTo(Double anotherDouble)
Compares twoDouble
objects numerically. -
Uses of Double in java.util
Methods in java.util that return Double Modifier and Type Method Description default Double
PrimitiveIterator.OfDouble. next()
Returns the next element in the iteration.Method parameters in java.util with type arguments of type Double Modifier and Type Method Description default void
PrimitiveIterator.OfDouble. forEachRemaining(Consumer<? super Double> action)
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.default void
Spliterator.OfDouble. forEachRemaining(Consumer<? super Double> action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.default boolean
Spliterator.OfDouble. tryAdvance(Consumer<? super Double> action)
If a remaining element exists, performs the given action on it, returningtrue
; else returnsfalse
. -
Uses of Double in java.util.stream
Methods in java.util.stream that return types with arguments of type Double Modifier and Type Method Description static <T> Collector<T,?,Double>
Collectors. averagingDouble(ToDoubleFunction<? super T> mapper)
Returns aCollector
that produces the arithmetic mean of a double-valued function applied to the input elements.static <T> Collector<T,?,Double>
Collectors. averagingInt(ToIntFunction<? super T> mapper)
Returns aCollector
that produces the arithmetic mean of an integer-valued function applied to the input elements.static <T> Collector<T,?,Double>
Collectors. averagingLong(ToLongFunction<? super T> mapper)
Returns aCollector
that produces the arithmetic mean of a long-valued function applied to the input elements.Stream<Double>
DoubleStream. boxed()
Returns aStream
consisting of the elements of this stream, boxed toDouble
.static <T> Collector<T,?,Double>
Collectors. summingDouble(ToDoubleFunction<? super T> mapper)
Returns aCollector
that produces the sum of a double-valued function applied to the input elements. -
Uses of Double in javafx.beans.binding
Methods in javafx.beans.binding that return types with arguments of type Double Modifier and Type Method Description ObjectExpression<Double>
DoubleExpression. asObject()
Creates anObjectExpression
that holds the value of thisDoubleExpression
.Method parameters in javafx.beans.binding with type arguments of type Double Modifier and Type Method Description static DoubleBinding
Bindings. createDoubleBinding(Callable<Double> func, Observable... dependencies)
Helper function to create a customDoubleBinding
. -
Uses of Double in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Double Modifier and Type Method Description ObjectProperty<Double>
DoubleProperty. asObject()
Creates anObjectProperty
that bidirectionally bound to thisDoubleProperty
.ReadOnlyObjectProperty<Double>
ReadOnlyDoubleProperty. asObject()
Creates aReadOnlyObjectProperty
that holds the value of thisReadOnlyDoubleProperty
.Method parameters in javafx.beans.property with type arguments of type Double Modifier and Type Method Description static DoubleProperty
DoubleProperty. doubleProperty(Property<Double> property)
Returns aDoubleProperty
that wraps aProperty
and is bidirectionally bound to it. -
Uses of Double in javafx.css
Constructors in javafx.css with parameters of type Double Constructor Description SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Double initialValue)
The constructor of theSimpleStyleableDoubleProperty
.SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Double initialValue)
The constructor of theSimpleStyleableDoubleProperty
. -
Uses of Double in javafx.scene.control
Methods in javafx.scene.control that return Double Modifier and Type Method Description Double
ResizeFeaturesBase. getDelta()
Returns the amount of horizontal space added or removed in the resize operation.Methods in javafx.scene.control that return types with arguments of type Double Modifier and Type Method Description StringConverter<Double>
Slider. getLabelFormatter()
Gets the value of the property labelFormatter.ObjectProperty<StringConverter<Double>>
Slider. labelFormatterProperty()
A function for formatting the label for a major tick.Method parameters in javafx.scene.control with type arguments of type Double Modifier and Type Method Description void
Slider. setLabelFormatter(StringConverter<Double> value)
Sets the value of the property labelFormatter.Constructors in javafx.scene.control with parameters of type Double Constructor Description ResizeFeatures(TableView<S> table, TableColumn<S,?> column, Double delta)
Creates an instance of this class, with the provided TableView, TableColumn and delta values being set and stored in this immutable instance.ResizeFeatures(TreeTableView<S> treeTable, TreeTableColumn<S,?> column, Double delta)
Creates an instance of this class, with the provided TreeTableView, TreeTableColumn and delta values being set and stored in this immutable instance.ResizeFeaturesBase(TableColumnBase<S,?> column, Double delta)
Creates an instance of this class, with the provided TableColumnBase and delta values being set and stored in this immutable instance. -
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 Method Description static <S> Callback<TableColumn<S,Double>,TableCell<S,Double>>
ProgressBarTableCell. forTableColumn()
Provides aProgressBar
that allows easy visualisation of a Number value as it proceeds from 0.0 to 1.0.static <S> Callback<TableColumn<S,Double>,TableCell<S,Double>>
ProgressBarTableCell. forTableColumn()
Provides aProgressBar
that allows easy visualisation of a Number value as it proceeds from 0.0 to 1.0.static <S> Callback<TreeTableColumn<S,Double>,TreeTableCell<S,Double>>
ProgressBarTreeTableCell. forTreeTableColumn()
Provides aProgressBar
that allows easy visualisation of a Number value as it proceeds from 0.0 to 1.0.static <S> Callback<TreeTableColumn<S,Double>,TreeTableCell<S,Double>>
ProgressBarTreeTableCell. forTreeTableColumn()
Provides aProgressBar
that allows easy visualisation of a Number value as it proceeds from 0.0 to 1.0. -
Uses of Double in javafx.scene.layout
Methods in javafx.scene.layout that return Double Modifier and Type Method Description static Double
AnchorPane. getBottomAnchor(Node child)
Returns the child's bottom anchor constraint if set.static Double
AnchorPane. getLeftAnchor(Node child)
Returns the child's left anchor constraint if set.static Double
AnchorPane. getRightAnchor(Node child)
Returns the child's right anchor constraint if set.static Double
AnchorPane. getTopAnchor(Node child)
Returns the child's top anchor constraint if set.Methods in javafx.scene.layout that return types with arguments of type Double Modifier and Type Method Description List<Double>
BorderStrokeStyle. getDashArray()
Defines the array representing the lengths of the dash segments.Methods in javafx.scene.layout with parameters of type Double Modifier and Type Method Description static void
AnchorPane. setBottomAnchor(Node child, Double value)
Sets the bottom anchor for the child when contained by an anchor pane.static void
AnchorPane. setLeftAnchor(Node child, Double value)
Sets the left anchor for the child when contained by an anchor pane.static void
AnchorPane. setRightAnchor(Node child, Double value)
Sets the right anchor for the child when contained by an anchor pane.static void
AnchorPane. setTopAnchor(Node child, Double value)
Sets the top anchor for the child when contained by an anchor pane.Constructor parameters in javafx.scene.layout with type arguments of type Double Constructor Description BorderStrokeStyle(StrokeType type, StrokeLineJoin lineJoin, StrokeLineCap lineCap, double miterLimit, double dashOffset, List<Double> dashArray)
Creates a new BorderStrokeStyle. -
Uses of Double in javafx.scene.shape
Methods in javafx.scene.shape that return types with arguments of type Double Modifier and Type Method Description ObservableList<Double>
Polygon. getPoints()
Gets the coordinates of thePolygon
vertices.ObservableList<Double>
Polyline. getPoints()
Gets the coordinates of thePolyLine
segments.ObservableList<Double>
Shape. getStrokeDashArray()
Defines the array representing the lengths of the dash segments. -
Uses of Double in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Double Modifier and Type Field Description static SimpleType<Double>
SimpleType. DOUBLE
TheSimpleType
instance describing values whose Java class name isjava.lang.Double
.
-