Enum SwiftFieldType
Enumerates the SWIFT field types that are differentiated by the SwiftField class FieldType property.
public enum SwiftFieldType
Fields
EndOfBlock = 4An End-Of-Block SWIFT field is a special case of a non-generic SWIFT field that consists of the Tag value 16S and the name of the block in the Content.
EndOfText = 5An End-Of-Text SWIFT field actually is no SWIFT field at all, but a special marker that consists solely of a CRLF followed by a dash. Neither of the other SwiftField properties is set.
GenericField = 1A generic SWIFT field consists of a Tag, an optional Qualifier, an optional DataSourceScheme , and Content.
NonGenericField = 2A non-generic SWIFT field solely consists of a Tag and Content.
Null = 0Initial FieldType property value for an uninitialized SwiftField instance.
Sequence = 6This is a pseudo-type used to mark instances of the derived SwiftFieldSequence class, which collects a sequence of other SwiftField instances.
StartOfBlock = 3A Start-Of-Block SWIFT field is a special case of a non-generic SWIFT field that consists of the Tag value 16R and the name of the block in the Content.