Uses of Class
java.lang.Float
-
Packages that use Float Package Description java.awt.font Provides classes and interface relating to fonts.java.lang Provides classes that are fundamental to the design of the Java programming language.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.javax.management.openmbean Provides the open data types and Open MBean descriptor classes. -
-
Uses of Float in java.awt.font
Fields in java.awt.font declared as Float Modifier and Type Field Description static Float
TextAttribute. JUSTIFICATION_FULL
Justify the line to the full requested width.static Float
TextAttribute. JUSTIFICATION_NONE
Do not allow the line to be justified.static Float
TextAttribute. POSTURE_OBLIQUE
The standard italic posture.static Float
TextAttribute. POSTURE_REGULAR
The standard posture, upright.static Float
TextAttribute. TRACKING_LOOSE
Perform loose tracking.static Float
TextAttribute. TRACKING_TIGHT
Perform tight tracking.static Float
TextAttribute. WEIGHT_BOLD
The standard bold weight.static Float
TextAttribute. WEIGHT_DEMIBOLD
A moderately lighter weight thanWEIGHT_BOLD
.static Float
TextAttribute. WEIGHT_DEMILIGHT
An intermediate weight betweenWEIGHT_LIGHT
andWEIGHT_STANDARD
.static Float
TextAttribute. WEIGHT_EXTRA_LIGHT
The lightest predefined weight.static Float
TextAttribute. WEIGHT_EXTRABOLD
An extra heavy weight.static Float
TextAttribute. WEIGHT_HEAVY
A moderately heavier weight thanWEIGHT_BOLD
.static Float
TextAttribute. WEIGHT_LIGHT
The standard light weight.static Float
TextAttribute. WEIGHT_MEDIUM
An intermediate weight betweenWEIGHT_REGULAR
andWEIGHT_BOLD
.static Float
TextAttribute. WEIGHT_REGULAR
The standard weight.static Float
TextAttribute. WEIGHT_SEMIBOLD
A moderately heavier weight thanWEIGHT_REGULAR
.static Float
TextAttribute. WEIGHT_ULTRABOLD
The heaviest predefined weight.static Float
TextAttribute. WIDTH_CONDENSED
The most condensed predefined width.static Float
TextAttribute. WIDTH_EXTENDED
The most extended predefined width.static Float
TextAttribute. WIDTH_REGULAR
The standard width.static Float
TextAttribute. WIDTH_SEMI_CONDENSED
A moderately condensed width.static Float
TextAttribute. WIDTH_SEMI_EXTENDED
A moderately extended width. -
Uses of Float in java.lang
Fields in java.lang with type parameters of type Float Modifier and Type Field Description static Class<Float>
Float. TYPE
TheClass
instance representing the primitive typefloat
.Methods in java.lang that return Float Modifier and Type Method Description static Float
Float. valueOf(float f)
Returns aFloat
instance representing the specifiedfloat
value.static Float
Float. valueOf(String s)
Returns aFloat
object holding thefloat
value represented by the argument strings
.Methods in java.lang with parameters of type Float Modifier and Type Method Description int
Float. compareTo(Float anotherFloat)
Compares twoFloat
objects numerically. -
Uses of Float in javafx.beans.binding
Methods in javafx.beans.binding that return types with arguments of type Float Modifier and Type Method Description ObjectExpression<Float>
FloatExpression. asObject()
Creates anObjectExpression
that holds the value of thisFloatExpression
.Method parameters in javafx.beans.binding with type arguments of type Float Modifier and Type Method Description static FloatBinding
Bindings. createFloatBinding(Callable<Float> func, Observable... dependencies)
Helper function to create a customFloatBinding
. -
Uses of Float in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Float Modifier and Type Method Description ObjectProperty<Float>
FloatProperty. asObject()
Creates anObjectProperty
that bidirectionally bound to thisFloatProperty
.ReadOnlyObjectProperty<Float>
ReadOnlyFloatProperty. asObject()
Creates aReadOnlyObjectProperty
that holds the value of thisReadOnlyFloatProperty
.Method parameters in javafx.beans.property with type arguments of type Float Modifier and Type Method Description static FloatProperty
FloatProperty. floatProperty(Property<Float> property)
Returns aFloatProperty
that wraps aProperty
and is bidirectionally bound to it. -
Uses of Float in javafx.css
Constructors in javafx.css with parameters of type Float Constructor Description SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Float initialValue)
The constructor of theSimpleStyleableFloatProperty
.SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Float initialValue)
The constructor of theSimpleStyleableFloatProperty
. -
Uses of Float in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Float Modifier and Type Field Description static SimpleType<Float>
SimpleType. FLOAT
TheSimpleType
instance describing values whose Java class name isjava.lang.Float
.
-