Package net.opengis.ows11
Class RangeClosureType
- Object
- 
- AbstractEnumerator
- 
- RangeClosureType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Enumerator
 
 public final class RangeClosureType extends AbstractEnumeratorA representation of the literals of the enumeration 'Range Closure Type', and utility methods for working with them.
- 
- 
Field SummaryFields Modifier and Type Field Description static intCLOSEDThe 'Closed' literal value.static RangeClosureTypeCLOSED_LITERALThe 'Closed' literal object.static intCLOSED_OPENThe 'Closed Open' literal value.static RangeClosureTypeCLOSED_OPEN_LITERALThe 'Closed Open' literal object.static intOPENThe 'Open' literal value.static intOPEN_CLOSEDThe 'Open Closed' literal value.static RangeClosureTypeOPEN_CLOSED_LITERALThe 'Open Closed' literal object.static RangeClosureTypeOPEN_LITERALThe 'Open' literal object.static ListVALUESA public read-only list of all the 'Range Closure Type' enumerators.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static RangeClosureTypeget(int value)Returns the 'Range Closure Type' literal with the specified integer value.static RangeClosureTypeget(String literal)Returns the 'Range Closure Type' literal with the specified literal value.static RangeClosureTypegetByName(String name)Returns the 'Range Closure Type' literal with the specified name.
 
- 
- 
- 
Field Detail- 
CLOSEDpublic static final int CLOSED The 'Closed' literal value. The specified minimum and maximum values are included in this range.- See Also:
- CLOSED_LITERAL, Constant Field Values
 
 - 
OPENpublic static final int OPEN The 'Open' literal value. The specified minimum and maximum values are NOT included in this range.- See Also:
- OPEN_LITERAL, Constant Field Values
 
 - 
OPEN_CLOSEDpublic static final int OPEN_CLOSED The 'Open Closed' literal value. The specified minimum value is NOT included in this range, and the specified maximum value IS included in this range.- See Also:
- OPEN_CLOSED_LITERAL, Constant Field Values
 
 - 
CLOSED_OPENpublic static final int CLOSED_OPEN The 'Closed Open' literal value. The specified minimum value IS included in this range, and the specified maximum value is NOT included in this range.- See Also:
- CLOSED_OPEN_LITERAL, Constant Field Values
 
 - 
CLOSED_LITERALpublic static final RangeClosureType CLOSED_LITERAL The 'Closed' literal object.- See Also:
- CLOSED
 
 - 
OPEN_LITERALpublic static final RangeClosureType OPEN_LITERAL The 'Open' literal object.- See Also:
- OPEN
 
 - 
OPEN_CLOSED_LITERALpublic static final RangeClosureType OPEN_CLOSED_LITERAL The 'Open Closed' literal object.- See Also:
- OPEN_CLOSED
 
 - 
CLOSED_OPEN_LITERALpublic static final RangeClosureType CLOSED_OPEN_LITERAL The 'Closed Open' literal object.- See Also:
- CLOSED_OPEN
 
 - 
VALUESpublic static final List VALUES A public read-only list of all the 'Range Closure Type' enumerators.
 
- 
 - 
Method Detail- 
getpublic static RangeClosureType get(String literal) Returns the 'Range Closure Type' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static RangeClosureType getByName(String name) Returns the 'Range Closure Type' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static RangeClosureType get(int value) Returns the 'Range Closure Type' literal with the specified integer value.- Parameters:
- value- the integer value.
- Returns:
- the matching enumerator or null.
 
 
- 
 
-