- java.lang.Object
-
- javafx.css.StyleConverter<ParsedValue[],Insets>
-
- javafx.css.converter.InsetsConverter
-
public final class InsetsConverter extends StyleConverter<ParsedValue[],Insets>
将1到4个大小组件的解析值数组转换为Insets。 大小值被解释为顶部,右侧,底部,左侧。 如果只给出顶部,那么这个值就被用在所有方面。 如果只有顶部和右侧,则底部设置为上部,左侧设置为右侧。 如果给出顶部,右侧和底部,则左侧设置为右侧。- 从以下版本开始:
- 9
-
-
Nested Class Summary
Nested Classes Modifier and Type Class 描述 static class
InsetsConverter.SequenceConverter
将一组解析的值转换为Insets对象数组,每个值都是1到4个大小的数组。-
Nested classes/interfaces inherited from class javafx.css.StyleConverter
StyleConverter.StringStore
-
-
方法摘要
所有方法 静态方法 接口方法 具体的方法 Modifier and Type 方法 描述 Insets
convert(ParsedValue<ParsedValue[],Insets> value, Font font)
从解析的CSS值转换为目标属性类型。static StyleConverter<ParsedValue[],Insets>
getInstance()
String
toString()
返回对象的字符串表示形式。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javafx.css.StyleConverter
cacheValue, clearCache, convert, getBooleanConverter, getCachedValue, getColorConverter, getDurationConverter, getEffectConverter, getEnumConverter, getFontConverter, getInsetsConverter, getPaintConverter, getSizeConverter, getStringConverter, getUrlConverter, readBinary, writeBinary
-
-
-
-
方法详细信息
-
getInstance
public static StyleConverter<ParsedValue[],Insets> getInstance()
-
convert
public Insets convert(ParsedValue<ParsedValue[],Insets> value, Font font)
描述从类别复制:StyleConverter
从解析的CSS值转换为目标属性类型。- 重写:
-
convert
类StyleConverter<ParsedValue[],Insets>
- 参数
-
value
- 要转换的ParsedValue
-
font
-该Font
到转换时使用relative值。 - 结果
- 转换的目标属性类型
-
-