public final class InsetsConverter extends StyleConverter<ParsedValue[],Insets>
Converts a parsed value array of 1 to 4 size components to an Insets.
The size values are interpreted as
top, right, bottom, left.
If only top is given, that value is used on all sides.
If there is only top and right, then bottom is set to top and left is set to right.
If top, right and bottom are given, then left is set to right.
- Since:
- 9
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInsetsConverter.SequenceConverterConverts an array of parsed values, each of which is an array of 1 to 4 size components, to an array of Insets objects. -
Method Summary
Modifier and Type Method Description Insetsconvert(ParsedValue<ParsedValue[],Insets> value, Font font)Convert from the parsed CSS value to the target property type.static StyleConverter<ParsedValue[],Insets>getInstance()StringtoString()Methods inherited from class javafx.css.StyleConverter
cacheValue, clearCache, convert, getBooleanConverter, getCachedValue, getColorConverter, getDurationConverter, getEffectConverter, getEnumConverter, getFontConverter, getInsetsConverter, getPaintConverter, getSizeConverter, getStringConverter, getUrlConverter, readBinary, writeBinary
-
Method Details
-
getInstance
-
convert
Description copied from class:StyleConverterConvert from the parsed CSS value to the target property type.- Overrides:
convertin classStyleConverter<ParsedValue[],Insets>- Parameters:
value- TheParsedValueto convertfont- TheFontto use when converting a relative value.- Returns:
- the converted target property type
-
toString
-