Enum Class ModelingLookAndFeel.Pattern.PatternType
java.lang.Object
java.lang.Enum<ModelingLookAndFeel.Pattern.PatternType>
se.conciliate.extensions.type.rule.ModelingLookAndFeel.Pattern.PatternType
- All Implemented Interfaces:
Serializable
,Comparable<ModelingLookAndFeel.Pattern.PatternType>
,Constable
- Enclosing interface:
- ModelingLookAndFeel.Pattern
public static enum ModelingLookAndFeel.Pattern.PatternType
extends Enum<ModelingLookAndFeel.Pattern.PatternType>
Pattern types decied the relationship between the pattern elements.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA from_start pattern type is one where edge go from start to first in pattern, from start to next in pattern and so on.
START->P1
START->P2
START->...
START->ENDA sequential pattern type is one where edges go from start to first in pattern, from first to next and so on to end.
START->P1->P2->...->END -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SEQUENTIAL
A sequential pattern type is one where edges go from start to first in pattern, from first to next and so on to end.
START->P1->P2->...->END -
FROM_START
A from_start pattern type is one where edge go from start to first in pattern, from start to next in pattern and so on.
START->P1
START->P2
START->...
START->END
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-