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:
Serializable, Comparable<ImportWizard.ImportWizardStep>
Enclosing class:
ImportWizard

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

Enumeration of steps comprising the import wizard.

Since:
2.0.1
Version:
$Id: 48da36557b8a2479258971793fb02c16a9821ca3 $

Enum Constant Summary
OFFICE_FILE
          Office file import wizard step.
OFFICE_PASTE
          Office paste import wizard step.
 
Method Summary
static ImportWizard.ImportWizardStep valueOf(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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
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 ImportWizard.ImportWizardStep[] 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 (ImportWizard.ImportWizardStep c : ImportWizard.ImportWizardStep.values())
    System.out.println(c);

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

valueOf

public static ImportWizard.ImportWizardStep valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2004–2015 XWiki. All rights reserved.