public enum ParamType extends java.lang.Enum<ParamType>
Message
params map.
It should be safe to add new params without bumping messaging version - Message
serializer
will skip over any params it doesn't recognise.
Please don't add boolean params here. Extend and use MessageFlag
instead.Enum Constant and Description |
---|
CUSTOM_MAP |
FAILURE_CALLBACK
Deprecated.
|
FAILURE_REASON
Deprecated.
|
FAILURE_RESPONSE
Deprecated.
|
FORWARD_TO |
RESPOND_TO |
TRACE_SESSION |
TRACE_TYPE |
TRACK_REPAIRED_DATA
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static ParamType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamType FORWARD_TO
public static final ParamType RESPOND_TO
@Deprecated public static final ParamType FAILURE_RESPONSE
@Deprecated public static final ParamType FAILURE_REASON
@Deprecated public static final ParamType FAILURE_CALLBACK
public static final ParamType TRACE_SESSION
public static final ParamType TRACE_TYPE
@Deprecated public static final ParamType TRACK_REPAIRED_DATA
public static final ParamType CUSTOM_MAP
public static ParamType[] values()
for (ParamType c : ParamType.values()) System.out.println(c);
public static ParamType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2022 The Apache Software Foundation