Package de.xima.fc.gui.statics
Enum EProjectImportStep
- java.lang.Object
-
- java.lang.Enum<EProjectImportStep>
-
- de.xima.fc.gui.statics.EProjectImportStep
-
- All Implemented Interfaces:
Serializable
,Comparable<EProjectImportStep>
public enum EProjectImportStep extends Enum<EProjectImportStep>
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEPENDENCIES
FORM_VERSION
Deprecated.PRE_IMPORT_MSG
PROJECT
STATE_MAPPING
SUMMARY
VERSIONS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EProjectImportStep
valueOf(String name)
Returns the enum constant of this type with the specified name.static EProjectImportStep[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRE_IMPORT_MSG
public static final EProjectImportStep PRE_IMPORT_MSG
-
PROJECT
public static final EProjectImportStep PROJECT
-
FORM_VERSION
@Deprecated public static final EProjectImportStep FORM_VERSION
Deprecated.
-
VERSIONS
public static final EProjectImportStep VERSIONS
-
STATE_MAPPING
public static final EProjectImportStep STATE_MAPPING
-
DEPENDENCIES
public static final EProjectImportStep DEPENDENCIES
-
SUMMARY
public static final EProjectImportStep SUMMARY
-
-
Method Detail
-
values
public static EProjectImportStep[] 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 (EProjectImportStep c : EProjectImportStep.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EProjectImportStep 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 nameNullPointerException
- if the argument is null
-
-