Enum ShapeDefinition.ShapeStateDefinition
- java.lang.Object
-
- java.lang.Enum<ShapeDefinition.ShapeStateDefinition>
-
- org.kie.workbench.common.stunner.svg.gen.model.ShapeDefinition.ShapeStateDefinition
-
- All Implemented Interfaces:
Serializable,Comparable<ShapeDefinition.ShapeStateDefinition>
- Enclosing interface:
- ShapeDefinition<V>
public static enum ShapeDefinition.ShapeStateDefinition extends Enum<ShapeDefinition.ShapeStateDefinition>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShapeDefinition.ShapeStateDefinitionvalueOf(String name)Returns the enum constant of this type with the specified name.static ShapeDefinition.ShapeStateDefinition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STROKE
public static final ShapeDefinition.ShapeStateDefinition STROKE
-
FILL
public static final ShapeDefinition.ShapeStateDefinition FILL
-
CONTAINER
public static final ShapeDefinition.ShapeStateDefinition CONTAINER
-
-
Method Detail
-
values
public static ShapeDefinition.ShapeStateDefinition[] 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 (ShapeDefinition.ShapeStateDefinition c : ShapeDefinition.ShapeStateDefinition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShapeDefinition.ShapeStateDefinition 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
-
-