The UnsignedIntRanges Class contains the following constructors:
UnsignedIntRanges()
UnsignedIntRanges(String str)
UnsignedIntRanges(String str, String delims)
Creates an UnsignedIntRanges object.
public UnsignedIntRanges();
Constructs a set of ranges from the given string. This method simply calls the superclass.
public UnsignedIntRanges(String str);
str | A string containing ranges of unsigned integers (in hexadecimal), where the bounds of each range are separated by a hyphen (-), and separate ranges are delimited by commas.
A range of a single unsigned integer can be entered by including just the single unsigned integer, separated by delimiters. |
Constructs a set of ranges from the given string with specified delimiters. This method simply calls the superclass.
public UnsignedIntRanges(String str, String delims)
str | A string containing ranges of unsigned integers (in hexadecimal), where the bounds of each range are separated by a hyphen (-).
A range of a single unsigned integer can be entered by including just the single unsigned integer, separated by delimiters. |
delims | The character or characters separating ranges. |