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.
  • Enum Constant Details

    • SEQUENTIAL

      public static final ModelingLookAndFeel.Pattern.PatternType 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

      public static final ModelingLookAndFeel.Pattern.PatternType 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

      public static ModelingLookAndFeel.Pattern.PatternType[] 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

      public static ModelingLookAndFeel.Pattern.PatternType valueOf(String name)
      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 name
      NullPointerException - if the argument is null