Enum Class Enums.StackPolicy

java.lang.Object
java.lang.Enum<Enums.StackPolicy>
com.motivewave.platform.sdk.common.Enums.StackPolicy
All Implemented Interfaces:
Serializable, Comparable<Enums.StackPolicy>, Constable
Enclosing interface:
Enums

public static enum Enums.StackPolicy extends Enum<Enums.StackPolicy>
Determines the policy for stacking figures that share the same coordinates (time, value).
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Stack figures above the other figures that share the same coordinates.
    Stack figures below the other figures that share the same coordinates.
    Stack figures horizontally that share the same coordinates and center them on the common coordinate.
    Stack figures to the left of other figures that share the same coordinates.
    Stack figures to the right of other figures that share the same coordinates.
    Stack figures vertically that share the same coordinates and center them on the common coordinate.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ABOVE

      public static final Enums.StackPolicy ABOVE
      Stack figures above the other figures that share the same coordinates.
    • BELOW

      public static final Enums.StackPolicy BELOW
      Stack figures below the other figures that share the same coordinates.
    • LEFT

      public static final Enums.StackPolicy LEFT
      Stack figures to the left of other figures that share the same coordinates.
    • VCENTER

      public static final Enums.StackPolicy VCENTER
      Stack figures vertically that share the same coordinates and center them on the common coordinate.
    • HCENTER

      public static final Enums.StackPolicy HCENTER
      Stack figures horizontally that share the same coordinates and center them on the common coordinate.
  • Method Details

    • values

      public static Enums.StackPolicy[] 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 Enums.StackPolicy 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