Package de.gsi.chart.plugins
Enum TableViewer.ColumnType
- java.lang.Object
-
- java.lang.Enum<TableViewer.ColumnType>
-
- de.gsi.chart.plugins.TableViewer.ColumnType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TableViewer.ColumnType>
- Enclosing class:
- TableViewer
protected static enum TableViewer.ColumnType extends java.lang.Enum<TableViewer.ColumnType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TableViewer.ColumnTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TableViewer.ColumnType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
X
public static final TableViewer.ColumnType X
-
Y
public static final TableViewer.ColumnType Y
-
EXN
public static final TableViewer.ColumnType EXN
-
EXP
public static final TableViewer.ColumnType EXP
-
EYN
public static final TableViewer.ColumnType EYN
-
EYP
public static final TableViewer.ColumnType EYP
-
-
Method Detail
-
values
public static TableViewer.ColumnType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TableViewer.ColumnType c : TableViewer.ColumnType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableViewer.ColumnType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-