- string
- the string representation of a size value.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.NumberFormatException if string cannot be parsed as a size value. Java.Lang.NullPointerException if string was null
Parses the specified string as a size value.
The ASCII characters \u002a ('*') and \u0078 ('x') are recognized as separators between the width and height.
For any Size s: Size.parseSize(s.toString()).equals(s). However, the method also handles sizes expressed in the following forms:
"widthxheight" or "width*height" => new Size(width, height), where width and height are string integers potentially containing a sign, such as "-10", "+7" or "5".