Package edu.sc.seis.TauP
Enum ModelAxisType
- java.lang.Object
-
- java.lang.Enum<ModelAxisType>
-
- edu.sc.seis.TauP.ModelAxisType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ModelAxisType>
public enum ModelAxisType extends java.lang.Enum<ModelAxisType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description bulkmodulus
density
depth
lambda
poisson
Q
Qp
Qs
radius
shearmodulus
slownessdeg
slownessdeg_p
slownessdeg_s
slownessrad
slownessrad_p
slownessrad_s
velocity
velocity_density
Vp
vpdensity
vpvs
Vs
vsdensity
youngsmodulus
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
labelFor(ModelAxisType axisType)
static java.lang.String
legendFor(ModelAxisType axisType)
static ModelAxisType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ModelAxisType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
depth
public static final ModelAxisType depth
-
radius
public static final ModelAxisType radius
-
velocity
public static final ModelAxisType velocity
-
Vp
public static final ModelAxisType Vp
-
Vs
public static final ModelAxisType Vs
-
slownessdeg
public static final ModelAxisType slownessdeg
-
slownessdeg_p
public static final ModelAxisType slownessdeg_p
-
slownessdeg_s
public static final ModelAxisType slownessdeg_s
-
slownessrad
public static final ModelAxisType slownessrad
-
slownessrad_p
public static final ModelAxisType slownessrad_p
-
slownessrad_s
public static final ModelAxisType slownessrad_s
-
density
public static final ModelAxisType density
-
velocity_density
public static final ModelAxisType velocity_density
-
Qp
public static final ModelAxisType Qp
-
Qs
public static final ModelAxisType Qs
-
Q
public static final ModelAxisType Q
-
vpvs
public static final ModelAxisType vpvs
-
vpdensity
public static final ModelAxisType vpdensity
-
vsdensity
public static final ModelAxisType vsdensity
-
poisson
public static final ModelAxisType poisson
-
shearmodulus
public static final ModelAxisType shearmodulus
-
lambda
public static final ModelAxisType lambda
-
bulkmodulus
public static final ModelAxisType bulkmodulus
-
youngsmodulus
public static final ModelAxisType youngsmodulus
-
-
Method Detail
-
values
public static ModelAxisType[] 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 (ModelAxisType c : ModelAxisType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelAxisType 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
-
legendFor
public static java.lang.String legendFor(ModelAxisType axisType)
-
labelFor
public static java.lang.String labelFor(ModelAxisType axisType)
-
-