Uses of Class
java.lang.Float
-
Packages that use Float 软件包 描述 java.awt.font 提供与字体相关的类和界面。java.lang 提供对Java编程语言设计至关重要的类。javafx.beans.binding javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,以及一些实现。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。javafx.util.converter 此包用于JavaFX的标准字符串转换器。javax.management.openmbean 提供打开的数据类型和Open MBean描述符类。 -
-
Uses of Float in java.awt.font
Fields in java.awt.font declared as Float Modifier and Type Field 描述 static Float
TextAttribute. JUSTIFICATION_FULL
将线对齐为满请求宽度。static Float
TextAttribute. JUSTIFICATION_NONE
不要让线路有道理。static Float
TextAttribute. POSTURE_OBLIQUE
标准斜体姿势。static Float
TextAttribute. POSTURE_REGULAR
标准姿势,直立。static Float
TextAttribute. TRACKING_LOOSE
执行松动跟踪。static Float
TextAttribute. TRACKING_TIGHT
执行紧跟踪。static Float
TextAttribute. WEIGHT_BOLD
标准大胆的体重。static Float
TextAttribute. WEIGHT_DEMIBOLD
重量比中等重量比WEIGHT_BOLD
。static Float
TextAttribute. WEIGHT_DEMILIGHT
中间重量在WEIGHT_LIGHT
和WEIGHT_STANDARD
之间。static Float
TextAttribute. WEIGHT_EXTRA_LIGHT
最轻的预定义重量。static Float
TextAttribute. WEIGHT_EXTRABOLD
重量过重static Float
TextAttribute. WEIGHT_HEAVY
比WEIGHT_BOLD
中等重。static Float
TextAttribute. WEIGHT_LIGHT
标准重量轻。static Float
TextAttribute. WEIGHT_MEDIUM
中间重量在WEIGHT_REGULAR
和WEIGHT_BOLD
之间。static Float
TextAttribute. WEIGHT_REGULAR
标准重量。static Float
TextAttribute. WEIGHT_SEMIBOLD
中等重量比WEIGHT_REGULAR
。static Float
TextAttribute. WEIGHT_ULTRABOLD
最重的预定义重量。static Float
TextAttribute. WIDTH_CONDENSED
最浓缩的预定宽度。static Float
TextAttribute. WIDTH_EXTENDED
最大的预定宽度。static Float
TextAttribute. WIDTH_REGULAR
标准宽度。static Float
TextAttribute. WIDTH_SEMI_CONDENSED
中等浓度的宽度。static Float
TextAttribute. WIDTH_SEMI_EXTENDED
中等宽度的宽度。 -
Uses of Float in java.lang
Fields in java.lang with type parameters of type Float Modifier and Type Field 描述 static Class<Float>
Float. TYPE
Class
实例代表原始类型float
。Methods in java.lang that return Float Modifier and Type 方法 描述 static Float
Float. valueOf(float f)
返回一个表示float
值的Float
实例。static Float
Float. valueOf(String s)
返回一个Float
对象,该对象保存由参数字符串s
表示的float
值。Methods in java.lang with parameters of type Float Modifier and Type 方法 描述 int
Float. compareTo(Float anotherFloat)
数值比较两个Float
对象。 -
Uses of Float in javafx.beans.binding
Methods in javafx.beans.binding that return Float Modifier and Type 方法 描述 Float
FloatExpression. getValue()
Methods in javafx.beans.binding that return types with arguments of type Float Modifier and Type 方法 描述 ObjectExpression<Float>
FloatExpression. asObject()
创建一个ObjectExpression
,其值为FloatExpression
。Method parameters in javafx.beans.binding with type arguments of type Float Modifier and Type 方法 描述 static FloatBinding
Bindings. createFloatBinding(Callable<Float> func, Observable... dependencies)
助手功能创建自定义FloatBinding
。 -
Uses of Float in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Float Modifier and Type 方法 描述 ObjectProperty<Float>
FloatProperty. asObject()
创建一个ObjectProperty
双向绑定到这个FloatProperty
。ReadOnlyObjectProperty<Float>
ReadOnlyFloatProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyFloatProperty
。Method parameters in javafx.beans.property with type arguments of type Float Modifier and Type 方法 描述 static FloatProperty
FloatProperty. floatProperty(Property<Float> property)
返回一个FloatProperty
,它包装一个Property
,并双向绑定到它。 -
Uses of Float in javafx.css
Constructors in javafx.css with parameters of type Float Constructor 描述 SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Float initialValue)
SimpleStyleableFloatProperty
的构造SimpleStyleableFloatProperty
。SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Float initialValue)
SimpleStyleableFloatProperty
的构造SimpleStyleableFloatProperty
。 -
Uses of Float in javafx.util.converter
Methods in javafx.util.converter that return Float Modifier and Type 方法 描述 Float
FloatStringConverter. fromString(String value)
将提供的字符串转换为由特定转换器定义的对象。Methods in javafx.util.converter with parameters of type Float Modifier and Type 方法 描述 String
FloatStringConverter. toString(Float value)
将提供的对象转换为其字符串形式。 -
Uses of Float in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Float Modifier and Type Field 描述 static SimpleType<Float>
SimpleType. FLOAT
TheSimpleType
instance describing values whose Java class name isjava.lang.Float
.
-