Class SetOfIntegerSyntax
- All Implemented Interfaces:
-
Serializable,Cloneable
- Direct Known Subclasses:
-
CopiesSupported,JobImpressionsSupported,JobKOctetsSupported,JobMediaSheetsSupported,NumberUpSupported,PageRanges
public abstract class SetOfIntegerSyntax extends Object implements Serializable, Cloneable
SetOfIntegerSyntax is an abstract base class providing the common implementation of all attributes whose value is a set of nonnegative integers. This includes attributes whose value is a single range of integers and attributes whose value is a set of ranges of integers. You can construct an instance of SetOfIntegerSyntax by giving it in "string form." The string consists of zero or more comma-separated integer groups. Each integer group consists of either one integer, two integers separated by a hyphen (-), or two integers separated by a colon (:). Each integer consists of one or more decimal digits (0 through 9). Whitespace characters cannot appear within an integer but are otherwise ignored. For example: "", "1", "5-10", "1:2, 4".
You can also construct an instance of SetOfIntegerSyntax by giving it in "array form." Array form consists of an array of zero or more integer groups where each integer group is a length-1 or length-2 array of ints; for example, int[0][], int[][]{{1}}, int[][]{{5,10}}, int[][]{{1,2},{4}}.
In both string form and array form, each successive integer group gives a range of integers to be included in the set. The first integer in each group gives the lower bound of the range; the second integer in each group gives the upper bound of the range; if there is only one integer in the group, the upper bound is the same as the lower bound. If the upper bound is less than the lower bound, it denotes a null range (no values). If the upper bound is equal to the lower bound, it denotes a range consisting of a single value. If the upper bound is greater than the lower bound, it denotes a range consisting of more than one value. The ranges may appear in any order and are allowed to overlap. The union of all the ranges gives the set's contents. Once a SetOfIntegerSyntax instance is constructed, its value is immutable.
The SetOfIntegerSyntax object's value is actually stored in "canonical array form." This is the same as array form, except there are no null ranges; the members of the set are represented in as few ranges as possible (i.e., overlapping ranges are coalesced); the ranges appear in ascending order; and each range is always represented as a length-two array of ints in the form {lower bound, upper bound}. An empty set is represented as a zero-length array.
Class SetOfIntegerSyntax has operations to return the set's members in canonical array form, to test whether a given integer is a member of the set, and to iterate through the members of the set.
- See Also:
Constructor Summary
| Modifier | Constructor | Description |
|---|---|---|
protected |
Construct a new set-of-integer attribute containing a single integer. |
|
protected |
Construct a new set-of-integer attribute with the given members in array form. |
|
protected |
Construct a new set-of-integer attribute containing a single range of integers. |
|
protected |
Construct a new set-of-integer attribute with the given members in string form. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
contains |
Determine if this set-of-integer attribute contains the given value. |
boolean |
contains |
Determine if this set-of-integer attribute contains the given integer attribute's value. |
boolean |
equals |
Returns whether this set-of-integer attribute is equivalent to the passed in object. |
int[][] |
getMembers() |
Obtain this set-of-integer attribute's members in canonical array form. |
int |
hashCode() |
Returns a hash code value for this set-of-integer attribute. |
int |
next |
Determine the smallest integer in this set-of-integer attribute that is greater than the given value. |
String |
toString() |
Returns a string value corresponding to this set-of-integer attribute. |
Constructor Details
SetOfIntegerSyntax
protected SetOfIntegerSyntax(String members)
- Parameters:
-
members- set members in string form. Ifnull, an empty set is constructed. - Throws:
-
IllegalArgumentException- ifmembersdoes not obey the proper syntax
SetOfIntegerSyntax
protected SetOfIntegerSyntax(int[][] members)
- Parameters:
-
members- set members in array form. Ifnull, an empty set is constructed. - Throws:
-
NullPointerException- if any element ofmembersisnull -
IllegalArgumentException- if any element ofmembersis not a length-one or length-two array or if anynon-nullrange inmembershas a lower bound less than zero
SetOfIntegerSyntax
protected SetOfIntegerSyntax(int member)
- Parameters:
-
member- set member - Throws:
-
IllegalArgumentException- ifmemberis negative
SetOfIntegerSyntax
protected SetOfIntegerSyntax(int lowerBound, int upperBound)
- Parameters:
-
lowerBound- Lower bound of the range -
upperBound- Upper bound of the range - Throws:
-
IllegalArgumentException- if the range isnon-nullandlowerBoundis less than zero
Method Details
getMembers
public int[][] getMembers()
- Returns:
- this set-of-integer attribute's members in canonical array form
contains
public boolean contains(int x)
- Parameters:
-
x- the Integer value - Returns:
-
trueif this set-of-integer attribute contains the valuex,falseotherwise
contains
public boolean contains(IntegerSyntax attribute)
- Parameters:
-
attribute- the Integer attribute - Returns:
-
trueif this set-of-integer attribute containsattribute's value,falseotherwise
next
public int next(int x)
-1 is returned. (Since a set-of-integer attribute can only contain nonnegative values, -1 will never appear in the set.) You can use the next() method to iterate through the integer values in a set-of-integer attribute in ascending order, like this:
SetOfIntegerSyntax attribute = . . .;
int i = -1;
while ((i = attribute.next (i)) != -1)
{
foo (i);
}
- Parameters:
-
x- the Integer value - Returns:
- the smallest integer in this set-of-integer attribute that is greater than
x, or-1if no integer in this set-of-integer attribute is greater thanx.
equals
public boolean equals(Object object)
-
objectis notnull. -
objectis an instance of classSetOfIntegerSyntax. - This set-of-integer attribute's members and
object's members are the same.
hashCode
public int hashCode()
toString
public String toString()
"i" if the lower bound equals the upper bound or "i-j" otherwise.
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/print/attribute/SetOfIntegerSyntax.html