net.sourceforge.fixagora.excel.client.model
Enum ExcelImportTableModel.EntryStatus

java.lang.Object
  extended by java.lang.Enum<ExcelImportTableModel.EntryStatus>
      extended by net.sourceforge.fixagora.excel.client.model.ExcelImportTableModel.EntryStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExcelImportTableModel.EntryStatus>
Enclosing class:
ExcelImportTableModel

public static enum ExcelImportTableModel.EntryStatus
extends java.lang.Enum<ExcelImportTableModel.EntryStatus>

The Enum EntryStatus.


Enum Constant Summary
DISABLED
          The disabled.
INVALID
          The invalid.
UPLOAD_FAILED
          The upload failed.
UPLOADED
          The uploaded.
UPLOADING
          The uploading.
VALID
          The valid.
 
Method Summary
static ExcelImportTableModel.EntryStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExcelImportTableModel.EntryStatus[] 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

VALID

public static final ExcelImportTableModel.EntryStatus VALID
The valid.


INVALID

public static final ExcelImportTableModel.EntryStatus INVALID
The invalid.


DISABLED

public static final ExcelImportTableModel.EntryStatus DISABLED
The disabled.


UPLOADING

public static final ExcelImportTableModel.EntryStatus UPLOADING
The uploading.


UPLOADED

public static final ExcelImportTableModel.EntryStatus UPLOADED
The uploaded.


UPLOAD_FAILED

public static final ExcelImportTableModel.EntryStatus UPLOAD_FAILED
The upload failed.

Method Detail

values

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

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

valueOf

public static ExcelImportTableModel.EntryStatus 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