Package org.meteoinfo.legend
Enum PointStyle
- java.lang.Object
-
- java.lang.Enum<PointStyle>
-
- org.meteoinfo.legend.PointStyle
-
public enum PointStyle extends java.lang.Enum<PointStyle>
Point style enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CircleCIRCLE_STARDiamondDOUBLE_CIRCLEDownSemiCircleDownTriangleMinusPentagonPlusSquareStarStarLinesUpSemiCircleUpTriangleXCross
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PointStylevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PointStyle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Circle
public static final PointStyle Circle
-
Square
public static final PointStyle Square
-
UpTriangle
public static final PointStyle UpTriangle
-
DownTriangle
public static final PointStyle DownTriangle
-
Diamond
public static final PointStyle Diamond
-
XCross
public static final PointStyle XCross
-
Plus
public static final PointStyle Plus
-
Minus
public static final PointStyle Minus
-
Star
public static final PointStyle Star
-
StarLines
public static final PointStyle StarLines
-
Pentagon
public static final PointStyle Pentagon
-
UpSemiCircle
public static final PointStyle UpSemiCircle
-
DownSemiCircle
public static final PointStyle DownSemiCircle
-
DOUBLE_CIRCLE
public static final PointStyle DOUBLE_CIRCLE
-
CIRCLE_STAR
public static final PointStyle CIRCLE_STAR
-
-
Method Detail
-
values
public static PointStyle[] 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 (PointStyle c : PointStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PointStyle 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
-
-