Package org.orekit.rugged.raster
Enum EarthHemisphere
- java.lang.Object
-
- java.lang.Enum<EarthHemisphere>
-
- org.orekit.rugged.raster.EarthHemisphere
-
- All Implemented Interfaces:
Serializable
,Comparable<EarthHemisphere>
public enum EarthHemisphere extends Enum<EarthHemisphere>
Enumerate for Earth hemispheres for tiles definition.For Latitude: NORTH / SOUTH
For Longitude: WESTEXTREME / WEST / EAST / EASTEXTREME
- Since:
- 4.0
- Author:
- Guylaine Prat
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EAST
East hemisphere.EASTEXTREME
Extreme East.NORTH
North hemisphere.SOUTH
South hemisphere.WEST
West hemisphere.WESTEXTREME
Extreme West.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EarthHemisphere
valueOf(String name)
Returns the enum constant of this type with the specified name.static EarthHemisphere[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOUTH
public static final EarthHemisphere SOUTH
South hemisphere.
-
NORTH
public static final EarthHemisphere NORTH
North hemisphere.
-
WESTEXTREME
public static final EarthHemisphere WESTEXTREME
Extreme West.
-
WEST
public static final EarthHemisphere WEST
West hemisphere.
-
EAST
public static final EarthHemisphere EAST
East hemisphere.
-
EASTEXTREME
public static final EarthHemisphere EASTEXTREME
Extreme East.
-
-
Method Detail
-
values
public static EarthHemisphere[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EarthHemisphere c : EarthHemisphere.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EarthHemisphere valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-