Package org.cip4.jdflib.jmf
Enum JDFMessageService.EResponseMode
- java.lang.Object
-
- java.lang.Enum<JDFMessageService.EResponseMode>
-
- org.cip4.jdflib.jmf.JDFMessageService.EResponseMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JDFMessageService.EResponseMode>
- Enclosing class:
- JDFMessageService
public static enum JDFMessageService.EResponseMode extends java.lang.Enum<JDFMessageService.EResponseMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FireAndForgetPollReliableResponse
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JDFMessageService.EResponseModegetEnum(java.lang.String val)static java.util.List<JDFMessageService.EResponseMode>getEnums(java.lang.String val)static JDFMessageService.EResponseModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JDFMessageService.EResponseMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FireAndForget
public static final JDFMessageService.EResponseMode FireAndForget
-
Reliable
public static final JDFMessageService.EResponseMode Reliable
-
Response
public static final JDFMessageService.EResponseMode Response
-
Poll
public static final JDFMessageService.EResponseMode Poll
-
-
Method Detail
-
values
public static JDFMessageService.EResponseMode[] 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 (JDFMessageService.EResponseMode c : JDFMessageService.EResponseMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JDFMessageService.EResponseMode 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
-
getEnum
public static JDFMessageService.EResponseMode getEnum(java.lang.String val)
-
getEnums
public static java.util.List<JDFMessageService.EResponseMode> getEnums(java.lang.String val)
-
-