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