|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Interval.Closure> org.deegree.coverage.rangeset.Interval.Closure
public static enum Interval.Closure
The Closure
of an interval
Enum Constant Summary | |
---|---|
closed
closed |
|
closed_open
closed-open |
|
open
open |
|
open_closed
open-closed |
Field Summary | |
---|---|
String |
begin
simple boundary representation of the beginning of an interval |
String |
end
simple boundary representation of the end of an interval |
Method Summary | |
---|---|
static Interval.Closure |
fromString(String closureValue)
|
static Interval.Closure |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Interval.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 Interval.Closure closed
public static final Interval.Closure open
public static final Interval.Closure open_closed
public static final Interval.Closure closed_open
Field Detail |
---|
public String begin
public String end
Method Detail |
---|
public static Interval.Closure[] values()
for (Interval.Closure c : Interval.Closure.values()) System.out.println(c);
public static Interval.Closure 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 nullpublic static Interval.Closure fromString(String closureValue)
closureValue
- to be mapped, '-' will be replaced with '_'
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |