|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Range.Closure> org.deegree.services.wps.annotations.input.Range.Closure
public static enum Range.Closure
The Closure
enumerates over the different interval possibilities.
Enum Constant Summary | |
---|---|
closed
closed, min max included |
|
closed_open
min, max not included |
|
open
min, max not include |
|
open_closed
min not, max included |
Method Summary | |
---|---|
static Range.Closure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Range.Closure[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Range.Closure closed
public static final Range.Closure open
public static final Range.Closure open_closed
public static final Range.Closure closed_open
Method Detail |
---|
public static Range.Closure[] values()
for (Range.Closure c : Range.Closure.values()) System.out.println(c);
public static Range.Closure 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |