blob: 22a828f713be068512fdc77581010bf61b82008c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original authors and others.
*
* 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:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.ui.mode;
public final class Mode {
private Mode() {
// private default constructor for constants class
}
public static final String NORMAL_MODE = "NORMAL_MODE"; //$NON-NLS-1$
public static final String COLUMN_RESIZE_MODE = "COLUMN_RESIZE_MODE"; //$NON-NLS-1$
public static final String COLUMN_SORT_MODE = "COLUMN_SORT_MODE"; //$NON-NLS-1$
public static final String COLUMN_REORDER_MODE = "COLUMN_REORDER_MODE"; //$NON-NLS-1$
public static final String COLUMN_HEADER_MODE = "COLUMN_HEADER_MODE"; //$NON-NLS-1$
public static final String COLUMN_GROUP_MODE = "COLUMN_GROUP_MODE"; //$NON-NLS-1$
public static final String ROW_RESIZE_MODE = "ROW_RESIZE_MODE"; //$NON-NLS-1$
public static final String MOUSE_SELECTION_MODE = "MOUSE_SELECTION_MODE"; //$NON-NLS-1$
}