public enum ChangesType extends Enum<ChangesType>
Enum Constant and Description |
---|
ADD_SMH_AND_SMT
Use this type to add header's and trailer's tags to the message.
|
DELETE_AND_ADD_SMH_AND_SMT
Use this type to make sure that all tags in header and trailer
have only one instance in message.
|
UPDATE_SMH_AND_SMT
Use this type to update existed tags in header and trailer.
|
UPDATE_SMH_AND_SMT_DONOT_UPDATE_SNDR
Use this type to update existed tags in header and trailer, except SenderCompID(49).
|
UPDATE_SMH_AND_SMT_EXCEPT_COMPIDS
Update Sub and Location Ids only if CompId is absent.
|
Modifier and Type | Method and Description |
---|---|
static ChangesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangesType UPDATE_SMH_AND_SMT
public static final ChangesType ADD_SMH_AND_SMT
public static final ChangesType UPDATE_SMH_AND_SMT_DONOT_UPDATE_SNDR
public static final ChangesType DELETE_AND_ADD_SMH_AND_SMT
public static final ChangesType UPDATE_SMH_AND_SMT_EXCEPT_COMPIDS
public static ChangesType[] values()
for (ChangesType c : ChangesType.values()) System.out.println(c);
public static ChangesType 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 © 2000–2022 EPAM Systems. All rights reserved.