Package org.esa.snap.core.util.grid.isin
Enum IsinAPI.Raster
- java.lang.Object
-
- java.lang.Enum<IsinAPI.Raster>
-
- org.esa.snap.core.util.grid.isin.IsinAPI.Raster
-
- All Implemented Interfaces:
Serializable
,Comparable<IsinAPI.Raster>
- Enclosing class:
- IsinAPI
public static enum IsinAPI.Raster extends Enum<IsinAPI.Raster>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GRID_1_KM
GRID_250_M
GRID_500_M
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IsinAPI.Raster
valueOf(String name)
Returns the enum constant of this type with the specified name.static IsinAPI.Raster[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GRID_1_KM
public static final IsinAPI.Raster GRID_1_KM
-
GRID_500_M
public static final IsinAPI.Raster GRID_500_M
-
GRID_250_M
public static final IsinAPI.Raster GRID_250_M
-
-
Method Detail
-
values
public static IsinAPI.Raster[] 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 (IsinAPI.Raster c : IsinAPI.Raster.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IsinAPI.Raster 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
-
-