Enum Class ITraversalStrategy.TraversalScope

java.lang.Object
java.lang.Enum<ITraversalStrategy.TraversalScope>
org.eclipse.nebula.widgets.nattable.selection.ITraversalStrategy.TraversalScope
All Implemented Interfaces:
Serializable, Comparable<ITraversalStrategy.TraversalScope>, Constable
Enclosing interface:
ITraversalStrategy

public static enum ITraversalStrategy.TraversalScope extends Enum<ITraversalStrategy.TraversalScope>
The scope of the traversal which is necessary to determine what should happen on cycling.
  • Enum Constant Details

    • AXIS

      public static final ITraversalStrategy.TraversalScope AXIS
      The scope of the traversal is on the axis, row or column. Using this TraversalScope means that if cycling is enabled the selection stays on the same row/column.
    • TABLE

      public static final ITraversalStrategy.TraversalScope TABLE
      The scope of the traversal is on the table itself. Using this TraversalScope means that if cycling is enabled the selection will move to the next row/column too.
  • Method Details

    • values

      public static ITraversalStrategy.TraversalScope[] 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 ITraversalStrategy.TraversalScope 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