public enum ResendRequestLogic extends Enum<ResendRequestLogic>
Enum Constant and Description |
---|
EACH_GAP_RESEND
Resend request logic where the "Resend Request" message is sent for each
detected message sequence number gap rather than only for the first gap.
|
STANDARD_FIX
Standard FIX protocol resend request logic.
|
STANDARD_FIX_RESTRAINED
Standard FIX protocols resend request logic but restrain a bit.
|
Modifier and Type | Method and Description |
---|---|
static ResendRequestLogic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResendRequestLogic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResendRequestLogic STANDARD_FIX
public static final ResendRequestLogic STANDARD_FIX_RESTRAINED
public static final ResendRequestLogic EACH_GAP_RESEND
public static ResendRequestLogic[] values()
for (ResendRequestLogic c : ResendRequestLogic.values()) System.out.println(c);
public static ResendRequestLogic valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2025 Onix Solutions. All rights reserved.