Package de.xima.fc.export
Enum ProjektUpdateUtil.EProjectUpdateDataState
- java.lang.Object
-
- java.lang.Enum<ProjektUpdateUtil.EProjectUpdateDataState>
-
- de.xima.fc.export.ProjektUpdateUtil.EProjectUpdateDataState
-
- All Implemented Interfaces:
Serializable
,Comparable<ProjektUpdateUtil.EProjectUpdateDataState>
- Enclosing class:
- ProjektUpdateUtil
public static enum ProjektUpdateUtil.EProjectUpdateDataState extends Enum<ProjektUpdateUtil.EProjectUpdateDataState>
Alle Status, welche bei der Analyse der zu aktualisierenden Projektdaten auftreten können- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IO_ERROR
NO_FC_IMPORT
NOT_SUPPORTED_VERSION
OK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProjektUpdateUtil.EProjectUpdateDataState
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProjektUpdateUtil.EProjectUpdateDataState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IO_ERROR
public static final ProjektUpdateUtil.EProjectUpdateDataState IO_ERROR
-
NO_FC_IMPORT
public static final ProjektUpdateUtil.EProjectUpdateDataState NO_FC_IMPORT
-
NOT_SUPPORTED_VERSION
public static final ProjektUpdateUtil.EProjectUpdateDataState NOT_SUPPORTED_VERSION
-
OK
public static final ProjektUpdateUtil.EProjectUpdateDataState OK
-
-
Method Detail
-
values
public static ProjektUpdateUtil.EProjectUpdateDataState[] 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 (ProjektUpdateUtil.EProjectUpdateDataState c : ProjektUpdateUtil.EProjectUpdateDataState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProjektUpdateUtil.EProjectUpdateDataState 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
-
-