Enum EContainerItemAlignment

java.lang.Object
java.lang.Enum<EContainerItemAlignment>
de.xima.fc.common.workflow.bpmn.EContainerItemAlignment
All Implemented Interfaces:
IWorkflowBpmnAlignmentSelector, Serializable, Comparable<EContainerItemAlignment>

public enum EContainerItemAlignment extends Enum<EContainerItemAlignment> implements IWorkflowBpmnAlignmentSelector
Predefined alignments for aligning boxes inside a container. The alignment function takes the size of the box and must return a value in the interval [0, size]. For example, when the function returns size / 2, the items are centered, which is similar to the CSS flexbox property align-items.
Since:
8.4.0
  • Enum Constant Details

  • Method Details

    • values

      public static EContainerItemAlignment[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EContainerItemAlignment 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 name
      NullPointerException - if the argument is null