Package org.esa.snap.core.util
Enum DummyProductBuilder.SizeOcc
- java.lang.Object
-
- java.lang.Enum<DummyProductBuilder.SizeOcc>
-
- org.esa.snap.core.util.DummyProductBuilder.SizeOcc
-
- All Implemented Interfaces:
Serializable
,Comparable<DummyProductBuilder.SizeOcc>
- Enclosing class:
- DummyProductBuilder
public static enum DummyProductBuilder.SizeOcc extends Enum<DummyProductBuilder.SizeOcc>
Occurrence of sizes.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DummyProductBuilder.SizeOcc
valueOf(String name)
Returns the enum constant of this type with the specified name.static DummyProductBuilder.SizeOcc[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DummyProductBuilder.SizeOcc NONE
None = No raster data nodes except geo-coding-related.
-
SINGLE
public static final DummyProductBuilder.SizeOcc SINGLE
Single size (default)
-
MULTI
public static final DummyProductBuilder.SizeOcc MULTI
Multi-size
-
-
Method Detail
-
values
public static DummyProductBuilder.SizeOcc[] 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 (DummyProductBuilder.SizeOcc c : DummyProductBuilder.SizeOcc.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DummyProductBuilder.SizeOcc 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
-
-