Package ru.ispras.castle.ast
Enum IntegerRange.RangePointType
- java.lang.Object
-
- java.lang.Enum<IntegerRange.RangePointType>
-
- ru.ispras.castle.ast.IntegerRange.RangePointType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IntegerRange.RangePointType>
- Enclosing class:
- IntegerRange
public static enum IntegerRange.RangePointType extends java.lang.Enum<IntegerRange.RangePointType>
This enumeration contains types of range bounds.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IntegerRange.RangePointType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IntegerRange.RangePointType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIN
public static final IntegerRange.RangePointType MIN
Start point of a range.
-
MAX
public static final IntegerRange.RangePointType MAX
End point of of a range.
-
ALL
public static final IntegerRange.RangePointType ALL
Start/end point of of a range.
-
-
Method Detail
-
values
public static IntegerRange.RangePointType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IntegerRange.RangePointType c : IntegerRange.RangePointType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntegerRange.RangePointType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-