Package ucar.nc2.ft2.coverage
Enum CoverageCoordAxis.DependenceType
- java.lang.Object
-
- java.lang.Enum<CoverageCoordAxis.DependenceType>
-
- ucar.nc2.ft2.coverage.CoverageCoordAxis.DependenceType
-
- All Implemented Interfaces:
Serializable,Comparable<CoverageCoordAxis.DependenceType>
- Enclosing class:
- CoverageCoordAxis
public static enum CoverageCoordAxis.DependenceType extends Enum<CoverageCoordAxis.DependenceType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CoverageCoordAxis.DependenceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CoverageCoordAxis.DependenceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
independent
public static final CoverageCoordAxis.DependenceType independent
-
dependent
public static final CoverageCoordAxis.DependenceType dependent
-
scalar
public static final CoverageCoordAxis.DependenceType scalar
-
twoD
public static final CoverageCoordAxis.DependenceType twoD
-
fmrcReg
public static final CoverageCoordAxis.DependenceType fmrcReg
-
dimension
public static final CoverageCoordAxis.DependenceType dimension
-
-
Method Detail
-
values
public static CoverageCoordAxis.DependenceType[] 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 (CoverageCoordAxis.DependenceType c : CoverageCoordAxis.DependenceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CoverageCoordAxis.DependenceType 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
-
-