Package de.gsi.chart.renderer.spi.utils
Enum FillPatternStyle.FillPattern
- java.lang.Object
-
- java.lang.Enum<FillPatternStyle.FillPattern>
-
- de.gsi.chart.renderer.spi.utils.FillPatternStyle.FillPattern
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FillPatternStyle.FillPattern>
- Enclosing class:
- FillPatternStyle
public static enum FillPatternStyle.FillPattern extends java.lang.Enum<FillPatternStyle.FillPattern>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HATCHHATCH0HATCH30HATCH45HATCH60HATCH90HATCHCROSS1HATCHCROSS2SOLID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FillPatternStyle.FillPatternvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FillPatternStyle.FillPattern[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOLID
public static final FillPatternStyle.FillPattern SOLID
-
HATCH
public static final FillPatternStyle.FillPattern HATCH
-
HATCH0
public static final FillPatternStyle.FillPattern HATCH0
-
HATCH30
public static final FillPatternStyle.FillPattern HATCH30
-
HATCH45
public static final FillPatternStyle.FillPattern HATCH45
-
HATCH60
public static final FillPatternStyle.FillPattern HATCH60
-
HATCH90
public static final FillPatternStyle.FillPattern HATCH90
-
HATCHCROSS1
public static final FillPatternStyle.FillPattern HATCHCROSS1
-
HATCHCROSS2
public static final FillPatternStyle.FillPattern HATCHCROSS2
-
-
Method Detail
-
values
public static FillPatternStyle.FillPattern[] 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 (FillPatternStyle.FillPattern c : FillPatternStyle.FillPattern.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FillPatternStyle.FillPattern 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
-
-