public enum EnumTemporalRangeType extends java.lang.Enum<EnumTemporalRangeType>
| Enum Constant and Description |
|---|
BEGIN
The BEGIN.
|
END
The END.
|
MULTIPOINT
The MULTIPOINT.
|
MULTISEGMENT
The MULTISEGMENT.
|
POINT
The POINT.
|
SEGMENT
The SEGMENT.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumTemporalRangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumTemporalRangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumTemporalRangeType POINT
public static final EnumTemporalRangeType MULTIPOINT
public static final EnumTemporalRangeType SEGMENT
public static final EnumTemporalRangeType MULTISEGMENT
public static final EnumTemporalRangeType BEGIN
public static final EnumTemporalRangeType END
public static EnumTemporalRangeType[] values()
for (EnumTemporalRangeType c : EnumTemporalRangeType.values()) System.out.println(c);
public static EnumTemporalRangeType 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 java.lang.String getValue()