public static enum RestrictionTracker.IsBounded extends java.lang.Enum<RestrictionTracker.IsBounded>
| Enum Constant and Description | 
|---|
| BOUNDEDIndicates that a  Restrictionrepresents a bounded amount of work. | 
| UNBOUNDEDIndicates that a  Restrictionrepresents an unbounded amount of work. | 
| Modifier and Type | Method and Description | 
|---|---|
| static RestrictionTracker.IsBounded | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static RestrictionTracker.IsBounded[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RestrictionTracker.IsBounded BOUNDED
Restriction represents a bounded amount of work.public static final RestrictionTracker.IsBounded UNBOUNDED
Restriction represents an unbounded amount of work.public static RestrictionTracker.IsBounded[] values()
for (RestrictionTracker.IsBounded c : RestrictionTracker.IsBounded.values()) System.out.println(c);
public static RestrictionTracker.IsBounded valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null