org.xwiki.gwt.wysiwyg.client.plugin.importer.ui
Enum ImportWizard.ImportWizardStep

java.lang.Object
  extended by java.lang.Enum<ImportWizard.ImportWizardStep>
      extended by org.xwiki.gwt.wysiwyg.client.plugin.importer.ui.ImportWizard.ImportWizardStep
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ImportWizard.ImportWizardStep>
Enclosing class:
ImportWizard

public static enum ImportWizard.ImportWizardStep
extends java.lang.Enum<ImportWizard.ImportWizardStep>

Enumeration of steps comprising the import wizard.

Since:
2.0.1
Version:
$Id: ImportWizard.java 28844 2010-05-12 13:22:39Z mflorea $

Enum Constant Summary
OFFICE_FILE
          Office file import wizard step.
OFFICE_PASTE
          Office paste import wizard step.
 
Method Summary
static ImportWizard.ImportWizardStep valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ImportWizard.ImportWizardStep[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OFFICE_FILE

public static final ImportWizard.ImportWizardStep OFFICE_FILE
Office file import wizard step.


OFFICE_PASTE

public static final ImportWizard.ImportWizardStep OFFICE_PASTE
Office paste import wizard step.

Method Detail

values

public static final ImportWizard.ImportWizardStep[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ImportWizard.ImportWizardStep c : ImportWizard.ImportWizardStep.values())
        System.out.println(c);

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

valueOf

public static ImportWizard.ImportWizardStep 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


Copyright © 2004-2010 XWiki. All Rights Reserved.