|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RangeClosure> org.deegree.protocol.ows.metadata.domain.RangeClosure
public enum RangeClosure
Specifies which of the boundary values are included in a Range
.
Data model has been designed to capture the expressiveness of all OWS specifications and versions and was verified against the following specifications:
From OWS Common 2.0: Specifies which of the minimum and maximum values are included in the range. Note that plus and minus infinity are considered closed bounds.
Enum Constant Summary | |
---|---|
CLOSED
Minimum and maximum values are included. |
|
CLOSED_OPEN
Minimum value IS included in this range, and the specified maximum value is NOT included. |
|
OPEN
Minimum and maximum values are NOT included. |
|
OPEN_CLOSED
Minimum value is NOT included in this range, and the specified maximum value IS included. |
Method Summary | |
---|---|
static RangeClosure |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RangeClosure[] |
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 RangeClosure CLOSED
public static final RangeClosure OPEN
public static final RangeClosure OPEN_CLOSED
public static final RangeClosure CLOSED_OPEN
Method Detail |
---|
public static RangeClosure[] values()
for (RangeClosure c : RangeClosure.values()) System.out.println(c);
public static RangeClosure valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |