Package de.xima.fc.mdl.enums
Enum EPostfachColumnIdentifier
- java.lang.Object
-
- java.lang.Enum<EPostfachColumnIdentifier>
-
- de.xima.fc.mdl.enums.EPostfachColumnIdentifier
-
- All Implemented Interfaces:
Serializable
,Comparable<EPostfachColumnIdentifier>
public enum EPostfachColumnIdentifier extends Enum<EPostfachColumnIdentifier>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SYSTEM_ATTACHEMENTS
SYSTEM_CHANGE_DATE
SYSTEM_CREATE_DATE
SYSTEM_ID
SYSTEM_INBOX
SYSTEM_PROCESS_ID
SYSTEM_STATUS
SYSTEM_SUBJECT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EPostfachColumnIdentifier
getByInternalIdentifier(String internalIdentifier)
String
getInternalIdentifier()
static EPostfachColumnIdentifier
valueOf(String name)
Returns the enum constant of this type with the specified name.static EPostfachColumnIdentifier[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYSTEM_ID
public static final EPostfachColumnIdentifier SYSTEM_ID
-
SYSTEM_PROCESS_ID
public static final EPostfachColumnIdentifier SYSTEM_PROCESS_ID
-
SYSTEM_INBOX
public static final EPostfachColumnIdentifier SYSTEM_INBOX
-
SYSTEM_SUBJECT
public static final EPostfachColumnIdentifier SYSTEM_SUBJECT
-
SYSTEM_STATUS
public static final EPostfachColumnIdentifier SYSTEM_STATUS
-
SYSTEM_CREATE_DATE
public static final EPostfachColumnIdentifier SYSTEM_CREATE_DATE
-
SYSTEM_CHANGE_DATE
public static final EPostfachColumnIdentifier SYSTEM_CHANGE_DATE
-
SYSTEM_ATTACHEMENTS
public static final EPostfachColumnIdentifier SYSTEM_ATTACHEMENTS
-
-
Method Detail
-
values
public static EPostfachColumnIdentifier[] 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 (EPostfachColumnIdentifier c : EPostfachColumnIdentifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EPostfachColumnIdentifier 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
-
getByInternalIdentifier
public static EPostfachColumnIdentifier getByInternalIdentifier(String internalIdentifier)
-
getInternalIdentifier
public String getInternalIdentifier()
-
-