Package edu.sc.seis.TauP
Enum DistAzPlanet
- java.lang.Object
-
- java.lang.Enum<DistAzPlanet>
-
- edu.sc.seis.TauP.DistAzPlanet
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DistAzPlanet>
public enum DistAzPlanet extends java.lang.Enum<DistAzPlanet>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description net.sf.geographiclib.GeodesiccreateGeodesic()static DistAzPlanetvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DistAzPlanet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EARTH
public static final DistAzPlanet EARTH
-
MOON
public static final DistAzPlanet MOON
-
MARS
public static final DistAzPlanet MARS
-
VENUS
public static final DistAzPlanet VENUS
-
MERCURY
public static final DistAzPlanet MERCURY
-
CERES
public static final DistAzPlanet CERES
-
JUPITER
public static final DistAzPlanet JUPITER
-
SATURN
public static final DistAzPlanet SATURN
-
URANUS
public static final DistAzPlanet URANUS
-
NEPTUNE
public static final DistAzPlanet NEPTUNE
-
-
Method Detail
-
values
public static DistAzPlanet[] 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 (DistAzPlanet c : DistAzPlanet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DistAzPlanet valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
createGeodesic
public net.sf.geographiclib.Geodesic createGeodesic()
-
-