Enum Class MoveWhereFlag

Object
Enum<MoveWhereFlag>
com.tailf.maapi.MoveWhereFlag
All Implemented Interfaces:
Serializable, Comparable<MoveWhereFlag>, Constable

public enum MoveWhereFlag extends Enum<MoveWhereFlag>
flags us by Maapi.moveOrdered method to control ordered-by user orders
  • Enum Constant Details

    • MOVE_FIRST

      public static final MoveWhereFlag MOVE_FIRST
      Move the entry first in the list.
    • MOVE_BEFORE

      public static final MoveWhereFlag MOVE_BEFORE
      Move the entry to the position before a given position.
    • MOVE_AFTER

      public static final MoveWhereFlag MOVE_AFTER
      Move the entry to the position after a given position.
    • MOVE_LAST

      public static final MoveWhereFlag MOVE_LAST
      Move the entry last in the list.
  • Method Details

    • values

      public static MoveWhereFlag[] 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 MoveWhereFlag 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
    • getValue

      public int getValue()
    • valueOf

      public static MoveWhereFlag valueOf(int i)
      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:
      i - 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