Package de.xima.fc.inbox.enums
Enum EInboxProcessDetails
- java.lang.Object
-
- java.lang.Enum<EInboxProcessDetails>
-
- de.xima.fc.inbox.enums.EInboxProcessDetails
-
- All Implemented Interfaces:
Serializable
,Comparable<EInboxProcessDetails>
public enum EInboxProcessDetails extends Enum<EInboxProcessDetails>
- Since:
- 8.0
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LASTCHANGEDATE
STATE
SUBMITDATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equalsName(String name)
static EInboxProcessDetails
fromString(String name)
String
getI18n()
String
toString()
static EInboxProcessDetails
valueOf(String name)
Returns the enum constant of this type with the specified name.static EInboxProcessDetails[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUBMITDATE
public static final EInboxProcessDetails SUBMITDATE
-
LASTCHANGEDATE
public static final EInboxProcessDetails LASTCHANGEDATE
-
STATE
public static final EInboxProcessDetails STATE
-
-
Method Detail
-
values
public static EInboxProcessDetails[] 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 (EInboxProcessDetails c : EInboxProcessDetails.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EInboxProcessDetails 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
-
fromString
public static EInboxProcessDetails fromString(String name)
-
equalsName
public boolean equalsName(String name)
-
getI18n
public String getI18n()
-
toString
public String toString()
- Overrides:
toString
in classEnum<EInboxProcessDetails>
-
-