Microsoft SDK for Java

UnsignedIntRanges Class Constructors

The UnsignedIntRanges Class contains the following constructors:

UnsignedIntRanges()
UnsignedIntRanges(String str)
UnsignedIntRanges(String str, String delims)

UnsignedIntRanges()

Creates an UnsignedIntRanges object.

Syntax

public UnsignedIntRanges();

UnsignedIntRanges(String str)

Constructs a set of ranges from the given string. This method simply calls the superclass.

Syntax

public UnsignedIntRanges(String str);

Parameters

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.


UnsignedIntRanges(String str, String delims)

Constructs a set of ranges from the given string with specified delimiters. This method simply calls the superclass.

Syntax

public UnsignedIntRanges(String str, String delims)

Parameters

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.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.