protected static enum IntegerBoundsChecker.Bound.Type extends java.lang.Enum<IntegerBoundsChecker.Bound.Type>
Modifier and Type | Method and Description |
---|---|
boolean |
isLower() |
boolean |
isStrict() |
boolean |
isUpper() |
IntegerBoundsChecker.Bound.Type |
nonStrict() |
IntegerBoundsChecker.Bound.Type |
strict() |
IntegerBoundsChecker.Bound.Type |
strict(boolean strict) |
java.lang.String |
toString() |
static IntegerBoundsChecker.Bound.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntegerBoundsChecker.Bound.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegerBoundsChecker.Bound.Type LT
public static final IntegerBoundsChecker.Bound.Type LE
public static final IntegerBoundsChecker.Bound.Type GT
public static final IntegerBoundsChecker.Bound.Type GE
public static IntegerBoundsChecker.Bound.Type[] values()
for (IntegerBoundsChecker.Bound.Type c : IntegerBoundsChecker.Bound.Type.values()) System.out.println(c);
public static IntegerBoundsChecker.Bound.Type 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 nullpublic boolean isLower()
public boolean isUpper()
public boolean isStrict()
public IntegerBoundsChecker.Bound.Type strict()
public IntegerBoundsChecker.Bound.Type nonStrict()
public IntegerBoundsChecker.Bound.Type strict(boolean strict)
public java.lang.String toString()
toString
in class java.lang.Enum<IntegerBoundsChecker.Bound.Type>