Package com.isode.x400.highlevel
Enum P7BindSession.Entry_Class
- java.lang.Object
-
- java.lang.Enum<P7BindSession.Entry_Class>
-
- com.isode.x400.highlevel.P7BindSession.Entry_Class
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<P7BindSession.Entry_Class>
- Enclosing class:
- P7BindSession
public static enum P7BindSession.Entry_Class extends java.lang.Enum<P7BindSession.Entry_Class>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MS_ENTRY_CLASS_STORED_MESSAGES
MS_ENTRY_CLASS_SUBMITTED_MESSAGES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static P7BindSession.Entry_Class
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static P7BindSession.Entry_Class[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MS_ENTRY_CLASS_STORED_MESSAGES
public static final P7BindSession.Entry_Class MS_ENTRY_CLASS_STORED_MESSAGES
-
MS_ENTRY_CLASS_SUBMITTED_MESSAGES
public static final P7BindSession.Entry_Class MS_ENTRY_CLASS_SUBMITTED_MESSAGES
-
-
Method Detail
-
values
public static P7BindSession.Entry_Class[] 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 (P7BindSession.Entry_Class c : P7BindSession.Entry_Class.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static P7BindSession.Entry_Class valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-