Package ucar.nc2.ft2.coverage
Enum CoverageCoordAxis.Spacing
- java.lang.Object
-
- java.lang.Enum<CoverageCoordAxis.Spacing>
-
- ucar.nc2.ft2.coverage.CoverageCoordAxis.Spacing
-
- All Implemented Interfaces:
Serializable
,Comparable<CoverageCoordAxis.Spacing>
- Enclosing class:
- CoverageCoordAxis
public static enum CoverageCoordAxis.Spacing extends Enum<CoverageCoordAxis.Spacing>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description contiguousInterval
discontiguousInterval
irregularPoint
regularInterval
regularPoint
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CoverageCoordAxis.Spacing
valueOf(String name)
Returns the enum constant of this type with the specified name.static CoverageCoordAxis.Spacing[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
regularPoint
public static final CoverageCoordAxis.Spacing regularPoint
-
irregularPoint
public static final CoverageCoordAxis.Spacing irregularPoint
-
regularInterval
public static final CoverageCoordAxis.Spacing regularInterval
-
contiguousInterval
public static final CoverageCoordAxis.Spacing contiguousInterval
-
discontiguousInterval
public static final CoverageCoordAxis.Spacing discontiguousInterval
-
-
Method Detail
-
values
public static CoverageCoordAxis.Spacing[] 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.Spacing c : CoverageCoordAxis.Spacing.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.Spacing 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
-
-