Package org.meteoinfo.layer
Enum LayerDrawType
- java.lang.Object
-
- java.lang.Enum<LayerDrawType>
-
- org.meteoinfo.layer.LayerDrawType
-
public enum LayerDrawType extends java.lang.Enum<LayerDrawType>
Layer draw type enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BarbContourGridFillGridPointImageMapRasterShadedStationModelStationPointStreamlineTrajLineTrajPointVectorWeatherSymbol
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LayerDrawTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LayerDrawType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Map
public static final LayerDrawType Map
-
Shaded
public static final LayerDrawType Shaded
-
Contour
public static final LayerDrawType Contour
-
GridFill
public static final LayerDrawType GridFill
-
GridPoint
public static final LayerDrawType GridPoint
-
Vector
public static final LayerDrawType Vector
-
StationPoint
public static final LayerDrawType StationPoint
-
Barb
public static final LayerDrawType Barb
-
WeatherSymbol
public static final LayerDrawType WeatherSymbol
-
StationModel
public static final LayerDrawType StationModel
-
Image
public static final LayerDrawType Image
-
Raster
public static final LayerDrawType Raster
-
TrajLine
public static final LayerDrawType TrajLine
-
TrajPoint
public static final LayerDrawType TrajPoint
-
Streamline
public static final LayerDrawType Streamline
-
-
Method Detail
-
values
public static LayerDrawType[] 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 (LayerDrawType c : LayerDrawType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LayerDrawType 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
-
-