blob: 77ebba260d4b0cd536afb9a06f42b7ee1aa83de3 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016, 2020 Dirk Fauth.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Dirk Fauth <dirk.fauth@googlemail.com> - Initial API and implementation
*****************************************************************************/
package org.eclipse.nebula.widgets.nattable.config;
/**
* Enumeration that is used to configure direction attributes. It is used for
* example
* <ul>
* <li>to configure which directions are allowed for using the fill drag handle
* </li>
* <li>to configure whether a table should be scaled to fit on a page</li>
* </ul>
*
* @since 1.4
*/
public enum Direction {
NONE, HORIZONTAL, VERTICAL, BOTH
}