nl.liacs.subdisc.gui
Enum MetaDataTableModel.MetaDataTableHeader

java.lang.Object
  extended by java.lang.Enum<MetaDataTableModel.MetaDataTableHeader>
      extended by nl.liacs.subdisc.gui.MetaDataTableModel.MetaDataTableHeader
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MetaDataTableModel.MetaDataTableHeader>
Enclosing class:
MetaDataTableModel

public static enum MetaDataTableModel.MetaDataTableHeader
extends java.lang.Enum<MetaDataTableModel.MetaDataTableHeader>


Enum Constant Summary
ATTRIBUTE
           
CARDINALITY
           
ENABLED
           
HAS_MISSING
           
MISSING_VALUE
           
TYPE
           
 
Field Summary
 int columnNr
           
 java.lang.String guiText
           
 
Method Summary
static java.lang.String getColumnName(int theColumnIndex)
           
static MetaDataTableModel.MetaDataTableHeader valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MetaDataTableModel.MetaDataTableHeader[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ATTRIBUTE

public static final MetaDataTableModel.MetaDataTableHeader ATTRIBUTE

CARDINALITY

public static final MetaDataTableModel.MetaDataTableHeader CARDINALITY

TYPE

public static final MetaDataTableModel.MetaDataTableHeader TYPE

ENABLED

public static final MetaDataTableModel.MetaDataTableHeader ENABLED

HAS_MISSING

public static final MetaDataTableModel.MetaDataTableHeader HAS_MISSING

MISSING_VALUE

public static final MetaDataTableModel.MetaDataTableHeader MISSING_VALUE
Field Detail

columnNr

public final int columnNr

guiText

public final java.lang.String guiText
Method Detail

values

public static MetaDataTableModel.MetaDataTableHeader[] 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 (MetaDataTableModel.MetaDataTableHeader c : MetaDataTableModel.MetaDataTableHeader.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MetaDataTableModel.MetaDataTableHeader 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 name
java.lang.NullPointerException - if the argument is null

getColumnName

public static java.lang.String getColumnName(int theColumnIndex)