Class MT365

  • All Implemented Interfaces:
    JsonSerializable, java.io.Serializable

    @Generated
    public class MT365
    extends AbstractMT
    implements java.io.Serializable
    MT 365 - Cross Currency Interest Rate Swap Termination/Recouponing Confirmation.

    SWIFT MT365 (ISO 15022) message structure:

    • Sequence A (M)
      • Field 15 A (M)
      • Field 20 (M)
      • Field 21 (O)
      • Field 22 A (M)
      • Field 94 A (O)
      • Field 22 B (M)
      • Field 22 C (M)
      • Field 23 A (M)
      • Field 21 N (M)
      • Field 21 B (O)
      • Field 30 T (M)
      • Field 30 Q (M)
      • Field 30 P (M)
      • Field 30 V (M)
      • Field 32 B (M)
      • Field 33 B (M)
      • Field 82 A,D (M)
      • Field 87 A,D (M)
      • Field 83 A,D,J (O)
      • Field 22 D (O)
      • Field 32 G (O)
      • Field 33 E (O)
      • Field 37 N (O)
      • Field 29 A (O)
      • Field 72 (O)
    • Sequence B (O)
      • Field 15 B (M)
      • Field 37 M (M)
      • Field 37 G (O)
    • Sequence E (O)
      • Field 15 E (M)
      • Field 37 M (M)
      • Field 37 G (O)
    • Sequence J (O)
      • Field 15 J (M)
      • Field 30 F (M)
      • Field 32 M (M)
      • Field 53 A,D (O)
      • Field 56 A,D (O)
      • Field 86 A,D (O)
      • Field 57 A,D (M)
    • Sequence K (O)
      • Field 15 K (M)
      • Field 30 F (M)
      • Field 32 M (M)
      • Field 53 A,D (O)
      • Field 56 A,D (O)
      • Field 86 A,D (O)
      • Field 57 A,D (M)
    • Sequence L (O)
      • Field 15 L (M)
      • Field 30 F (M)
      • Field 32 M (M)
      • Field 53 A,D (O)
      • Field 56 A,D (O)
      • Field 86 A,D (O)
      • Field 57 A,D (M)
    • Sequence M (O)
      • Field 15 M (M)
      • Field 30 F (M)
      • Field 32 M (M)
      • Field 53 A,D (O)
      • Field 56 A,D (O)
      • Field 86 A,D (O)
      • Field 57 A,D (M)

    This source code is specific to release SRU 2023

    For additional resources check https://www.prowidesoftware.com/resources

    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  MT365.SequenceA
      Class to model Sequence "A" in MT 365.
      static class  MT365.SequenceB
      Class to model Sequence "B" in MT 365.
      static class  MT365.SequenceE
      Class to model Sequence "E" in MT 365.
      static class  MT365.SequenceJ
      Class to model Sequence "J" in MT 365.
      static class  MT365.SequenceK
      Class to model Sequence "K" in MT 365.
      static class  MT365.SequenceL
      Class to model Sequence "L" in MT 365.
      static class  MT365.SequenceM
      Class to model Sequence "M" in MT 365.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String NAME
      Constant for MT name, this is part of the classname, after MT.
      static int SRU
      Constant identifying the SRU to which this class belongs to.
      • Fields inherited from class com.prowidesoftware.swift.model.mt.AbstractMT

        m
    • Constructor Summary

      Constructors 
      Constructor Description
      MT365()
      Creates and initializes a new MT365 input message setting TEST BICS as sender and receiver.
      MT365​(MtSwiftMessage m)
      Creates an MT365 initialized with the parameter MtSwiftMessage.
      MT365​(SwiftMessage m)
      Creates an MT365 initialized with the parameter SwiftMessage.
      MT365​(java.io.File file)
      Creates a new MT365 by parsing a file with the message content in its swift FIN format.
      MT365​(java.io.InputStream stream)
      Creates a new MT365 by parsing a input stream with the message content in its swift FIN format, using "UTF-8" as encoding.
      MT365​(java.lang.String fin)
      Creates a new MT365 by parsing a String with the message content in its swift FIN format.
      MT365​(java.lang.String sender, java.lang.String receiver)
      Creates and initializes a new MT365 input message from sender to receiver.
    • Field Detail

      • SRU

        public static final int SRU
        Constant identifying the SRU to which this class belongs to.
        See Also:
        Constant Field Values
      • NAME

        public static final java.lang.String NAME
        Constant for MT name, this is part of the classname, after MT.
        See Also:
        Constant Field Values
    • Constructor Detail

      • MT365

        public MT365​(SwiftMessage m)
        Creates an MT365 initialized with the parameter SwiftMessage.
        Parameters:
        m - swift message with the MT365 content
      • MT365

        public MT365​(MtSwiftMessage m)
        Creates an MT365 initialized with the parameter MtSwiftMessage.
        Parameters:
        m - swift message with the MT365 content, the parameter can not be null
        See Also:
        MT365(String)
      • MT365

        public MT365()
        Creates and initializes a new MT365 input message setting TEST BICS as sender and receiver. All mandatory header attributes are completed with default values.
        Since:
        7.6
      • MT365

        public MT365​(java.lang.String sender,
                     java.lang.String receiver)
        Creates and initializes a new MT365 input message from sender to receiver. All mandatory header attributes are completed with default values. In particular the sender and receiver addresses will be filled with proper default LT identifier and branch codes if not provided,
        Parameters:
        sender - the sender address as a bic8, bic11 or full logical terminal consisting of 12 characters
        receiver - the receiver address as a bic8, bic11 or full logical terminal consisting of 12 characters
        Since:
        7.7
      • MT365

        public MT365​(java.lang.String fin)
        Creates a new MT365 by parsing a String with the message content in its swift FIN format. If the fin parameter is null or the message cannot be parsed, the internal message object will be initialized (blocks will be created) but empty. If the string contains multiple messages, only the first one will be parsed.
        Parameters:
        fin - a string with the MT message in its FIN swift format
        Since:
        7.7
      • MT365

        public MT365​(java.io.InputStream stream)
              throws java.io.IOException
        Creates a new MT365 by parsing a input stream with the message content in its swift FIN format, using "UTF-8" as encoding. If the message content is null or cannot be parsed, the internal message object will be initialized (blocks will be created) but empty. If the stream contains multiple messages, only the first one will be parsed.
        Parameters:
        stream - an input stream in UTF-8 encoding with the MT message in its FIN swift format.
        Throws:
        java.io.IOException - if the stream data cannot be read
        Since:
        7.7
      • MT365

        public MT365​(java.io.File file)
              throws java.io.IOException
        Creates a new MT365 by parsing a file with the message content in its swift FIN format. If the file content is null or cannot be parsed as a message, the internal message object will be initialized (blocks will be created) but empty. If the file contains multiple messages, only the first one will be parsed.
        Parameters:
        file - a file with the MT message in its FIN swift format.
        Throws:
        java.io.IOException - if the file content cannot be read
        Since:
        7.7
    • Method Detail

      • parse

        public static MT365 parse​(MtSwiftMessage m)
        Creates an MT365 initialized with the parameter MtSwiftMessage.
        Parameters:
        m - swift message with the MT365 content
        Returns:
        the created object or null if the parameter is null
        Since:
        7.7
        See Also:
        MT365(String)
      • parse

        public static MT365 parse​(java.lang.String fin)
        Creates a new MT365 by parsing a String with the message content in its swift FIN format. If the fin parameter cannot be parsed, the returned MT365 will have its internal message object initialized (blocks will be created) but empty. If the string contains multiple messages, only the first one will be parsed.
        Parameters:
        fin - a string with the MT message in its FIN swift format. fin may be null in which case this method returns null
        Returns:
        a new instance of MT365 or null if fin is null
        Since:
        7.7
      • parse

        public static MT365 parse​(java.io.InputStream stream)
                           throws java.io.IOException
        Creates a new MT365 by parsing a input stream with the message content in its swift FIN format, using "UTF-8" as encoding. If the stream contains multiple messages, only the first one will be parsed.
        Parameters:
        stream - an input stream in UTF-8 encoding with the MT message in its FIN swift format.
        Returns:
        a new instance of MT365 or null if stream is null or the message cannot be parsed
        Throws:
        java.io.IOException - if the stream data cannot be read
        Since:
        7.7
      • parse

        public static MT365 parse​(java.io.File file)
                           throws java.io.IOException
        Creates a new MT365 by parsing a file with the message content in its swift FIN format. If the file contains multiple messages, only the first one will be parsed.
        Parameters:
        file - a file with the MT message in its FIN swift format.
        Returns:
        a new instance of MT365 or null if; file is null, does not exist, can't be read, is not a file or the message cannot be parsed
        Throws:
        java.io.IOException - if the file content cannot be read
        Since:
        7.7
      • getMessageType

        public java.lang.String getMessageType()
        Returns this MT number.
        Specified by:
        getMessageType in class AbstractMT
        Returns:
        the message type number of this MT
        Since:
        6.4
      • append

        public MT365 append​(SwiftTagListBlock block)
        Add all tags from block to the end of the block4.
        Overrides:
        append in class AbstractMT
        Parameters:
        block - to append
        Returns:
        this object to allow method chaining
        Since:
        7.6
      • append

        public MT365 append​(Tag... tags)
        Add all tags to the end of the block4.
        Overrides:
        append in class AbstractMT
        Parameters:
        tags - to append
        Returns:
        this object to allow method chaining
        Since:
        7.6
      • append

        public MT365 append​(Field... fields)
        Add all the fields to the end of the block4.
        Overrides:
        append in class AbstractMT
        Parameters:
        fields - to append
        Returns:
        this object to allow method chaining
        Since:
        7.6
      • fromJson

        public static MT365 fromJson​(java.lang.String json)
        Creates an MT365 messages from its JSON representation.

        For generic conversion of JSON into the corresponding MT instance see AbstractMT.fromJson(String)

        Parameters:
        json - a JSON representation of an MT365 message
        Returns:
        a new instance of MT365
        Since:
        7.10.3
      • getField15A

        public Field15A getField15A()
        Iterates through block4 fields and return the first one whose name matches 15A, or null if none is found. The first occurrence of field 15A at MT365 is expected to be the only one.
        Returns:
        a Field15A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField20

        public Field20 getField20()
        Iterates through block4 fields and return the first one whose name matches 20, or null if none is found. The first occurrence of field 20 at MT365 is expected to be the only one.
        Returns:
        a Field20 object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField21

        public Field21 getField21()
        Iterates through block4 fields and return the first one whose name matches 21, or null if none is found. The first occurrence of field 21 at MT365 is expected to be the only one.
        Returns:
        a Field21 object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField22A

        public Field22A getField22A()
        Iterates through block4 fields and return the first one whose name matches 22A, or null if none is found. The first occurrence of field 22A at MT365 is expected to be the only one.
        Returns:
        a Field22A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField94A

        public Field94A getField94A()
        Iterates through block4 fields and return the first one whose name matches 94A, or null if none is found. The first occurrence of field 94A at MT365 is expected to be the only one.
        Returns:
        a Field94A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField22B

        public Field22B getField22B()
        Iterates through block4 fields and return the first one whose name matches 22B, or null if none is found. The first occurrence of field 22B at MT365 is expected to be the only one.
        Returns:
        a Field22B object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField22C

        public Field22C getField22C()
        Iterates through block4 fields and return the first one whose name matches 22C, or null if none is found. The first occurrence of field 22C at MT365 is expected to be the only one.
        Returns:
        a Field22C object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField23A

        public Field23A getField23A()
        Iterates through block4 fields and return the first one whose name matches 23A, or null if none is found. The first occurrence of field 23A at MT365 is expected to be the only one.
        Returns:
        a Field23A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField21N

        public Field21N getField21N()
        Iterates through block4 fields and return the first one whose name matches 21N, or null if none is found. The first occurrence of field 21N at MT365 is expected to be the only one.
        Returns:
        a Field21N object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField21B

        public Field21B getField21B()
        Iterates through block4 fields and return the first one whose name matches 21B, or null if none is found. The first occurrence of field 21B at MT365 is expected to be the only one.
        Returns:
        a Field21B object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField30T

        public Field30T getField30T()
        Iterates through block4 fields and return the first one whose name matches 30T, or null if none is found. The first occurrence of field 30T at MT365 is expected to be the only one.
        Returns:
        a Field30T object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField30Q

        public Field30Q getField30Q()
        Iterates through block4 fields and return the first one whose name matches 30Q, or null if none is found. The first occurrence of field 30Q at MT365 is expected to be the only one.
        Returns:
        a Field30Q object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField30P

        public Field30P getField30P()
        Iterates through block4 fields and return the first one whose name matches 30P, or null if none is found. The first occurrence of field 30P at MT365 is expected to be the only one.
        Returns:
        a Field30P object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField30V

        public Field30V getField30V()
        Iterates through block4 fields and return the first one whose name matches 30V, or null if none is found. The first occurrence of field 30V at MT365 is expected to be the only one.
        Returns:
        a Field30V object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField32B

        public Field32B getField32B()
        Iterates through block4 fields and return the first one whose name matches 32B, or null if none is found. The first occurrence of field 32B at MT365 is expected to be the only one.
        Returns:
        a Field32B object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField33B

        public Field33B getField33B()
        Iterates through block4 fields and return the first one whose name matches 33B, or null if none is found. The first occurrence of field 33B at MT365 is expected to be the only one.
        Returns:
        a Field33B object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField82A

        public Field82A getField82A()
        Iterates through block4 fields and return the first one whose name matches 82A, or null if none is found. The first occurrence of field 82A at MT365 is expected to be the only one.
        Returns:
        a Field82A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField82D

        public Field82D getField82D()
        Iterates through block4 fields and return the first one whose name matches 82D, or null if none is found. The first occurrence of field 82D at MT365 is expected to be the only one.
        Returns:
        a Field82D object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField87A

        public Field87A getField87A()
        Iterates through block4 fields and return the first one whose name matches 87A, or null if none is found. The first occurrence of field 87A at MT365 is expected to be the only one.
        Returns:
        a Field87A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField87D

        public Field87D getField87D()
        Iterates through block4 fields and return the first one whose name matches 87D, or null if none is found. The first occurrence of field 87D at MT365 is expected to be the only one.
        Returns:
        a Field87D object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField83A

        public Field83A getField83A()
        Iterates through block4 fields and return the first one whose name matches 83A, or null if none is found. The first occurrence of field 83A at MT365 is expected to be the only one.
        Returns:
        a Field83A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField83D

        public Field83D getField83D()
        Iterates through block4 fields and return the first one whose name matches 83D, or null if none is found. The first occurrence of field 83D at MT365 is expected to be the only one.
        Returns:
        a Field83D object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField83J

        public Field83J getField83J()
        Iterates through block4 fields and return the first one whose name matches 83J, or null if none is found. The first occurrence of field 83J at MT365 is expected to be the only one.
        Returns:
        a Field83J object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField22D

        public Field22D getField22D()
        Iterates through block4 fields and return the first one whose name matches 22D, or null if none is found. The first occurrence of field 22D at MT365 is expected to be the only one.
        Returns:
        a Field22D object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField32G

        public Field32G getField32G()
        Iterates through block4 fields and return the first one whose name matches 32G, or null if none is found. The first occurrence of field 32G at MT365 is expected to be the only one.
        Returns:
        a Field32G object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField33E

        public Field33E getField33E()
        Iterates through block4 fields and return the first one whose name matches 33E, or null if none is found. The first occurrence of field 33E at MT365 is expected to be the only one.
        Returns:
        a Field33E object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField37N

        public Field37N getField37N()
        Iterates through block4 fields and return the first one whose name matches 37N, or null if none is found. The first occurrence of field 37N at MT365 is expected to be the only one.
        Returns:
        a Field37N object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField29A

        public Field29A getField29A()
        Iterates through block4 fields and return the first one whose name matches 29A, or null if none is found. The first occurrence of field 29A at MT365 is expected to be the only one.
        Returns:
        a Field29A object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField72

        public Field72 getField72()
        Iterates through block4 fields and return the first one whose name matches 72, or null if none is found. The first occurrence of field 72 at MT365 is expected to be the only one.
        Returns:
        a Field72 object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField15B

        public Field15B getField15B()
        Iterates through block4 fields and return the first one whose name matches 15B, or null if none is found. The first occurrence of field 15B at MT365 is expected to be the only one.
        Returns:
        a Field15B object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField15E

        public Field15E getField15E()
        Iterates through block4 fields and return the first one whose name matches 15E, or null if none is found. The first occurrence of field 15E at MT365 is expected to be the only one.
        Returns:
        a Field15E object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField15J

        public Field15J getField15J()
        Iterates through block4 fields and return the first one whose name matches 15J, or null if none is found. The first occurrence of field 15J at MT365 is expected to be the only one.
        Returns:
        a Field15J object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField15K

        public Field15K getField15K()
        Iterates through block4 fields and return the first one whose name matches 15K, or null if none is found. The first occurrence of field 15K at MT365 is expected to be the only one.
        Returns:
        a Field15K object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField15L

        public Field15L getField15L()
        Iterates through block4 fields and return the first one whose name matches 15L, or null if none is found. The first occurrence of field 15L at MT365 is expected to be the only one.
        Returns:
        a Field15L object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField15M

        public Field15M getField15M()
        Iterates through block4 fields and return the first one whose name matches 15M, or null if none is found. The first occurrence of field 15M at MT365 is expected to be the only one.
        Returns:
        a Field15M object or null if the field is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagByName(String)
      • getField37M

        public java.util.List<Field37M> getField37M()
        Iterates through block4 fields and return all occurrences of fields whose names matches 37M, or Collections.emptyList() if none is found. Multiple occurrences of field 37M at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field37M objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField37G

        public java.util.List<Field37G> getField37G()
        Iterates through block4 fields and return all occurrences of fields whose names matches 37G, or Collections.emptyList() if none is found. Multiple occurrences of field 37G at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field37G objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField30F

        public java.util.List<Field30F> getField30F()
        Iterates through block4 fields and return all occurrences of fields whose names matches 30F, or Collections.emptyList() if none is found. Multiple occurrences of field 30F at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field30F objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField32M

        public java.util.List<Field32M> getField32M()
        Iterates through block4 fields and return all occurrences of fields whose names matches 32M, or Collections.emptyList() if none is found. Multiple occurrences of field 32M at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field32M objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField53A

        public java.util.List<Field53A> getField53A()
        Iterates through block4 fields and return all occurrences of fields whose names matches 53A, or Collections.emptyList() if none is found. Multiple occurrences of field 53A at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field53A objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField53D

        public java.util.List<Field53D> getField53D()
        Iterates through block4 fields and return all occurrences of fields whose names matches 53D, or Collections.emptyList() if none is found. Multiple occurrences of field 53D at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field53D objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField56A

        public java.util.List<Field56A> getField56A()
        Iterates through block4 fields and return all occurrences of fields whose names matches 56A, or Collections.emptyList() if none is found. Multiple occurrences of field 56A at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field56A objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField56D

        public java.util.List<Field56D> getField56D()
        Iterates through block4 fields and return all occurrences of fields whose names matches 56D, or Collections.emptyList() if none is found. Multiple occurrences of field 56D at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field56D objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField86A

        public java.util.List<Field86A> getField86A()
        Iterates through block4 fields and return all occurrences of fields whose names matches 86A, or Collections.emptyList() if none is found. Multiple occurrences of field 86A at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field86A objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField86D

        public java.util.List<Field86D> getField86D()
        Iterates through block4 fields and return all occurrences of fields whose names matches 86D, or Collections.emptyList() if none is found. Multiple occurrences of field 86D at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field86D objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField57A

        public java.util.List<Field57A> getField57A()
        Iterates through block4 fields and return all occurrences of fields whose names matches 57A, or Collections.emptyList() if none is found. Multiple occurrences of field 57A at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field57A objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getField57D

        public java.util.List<Field57D> getField57D()
        Iterates through block4 fields and return all occurrences of fields whose names matches 57D, or Collections.emptyList() if none is found. Multiple occurrences of field 57D at MT365 are expected at one sequence or across several sequences.
        Returns:
        a List of Field57D objects or Collections.emptyList() if none is not found
        Throws:
        java.lang.IllegalStateException - if SwiftMessage object is not initialized
        See Also:
        SwiftTagListBlock.getTagsByName(String)
      • getSequenceA

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceA getSequenceA()
        Get the single occurrence of SequenceA using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Returns:
        a new sequence that may be empty, never returns null
        Since:
        7.7
      • getSequenceA

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceA getSequenceA​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceA using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceA within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceB

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceB getSequenceB()
        Get the single occurrence of SequenceB using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Returns:
        a new sequence that may be empty, never returns null
        Since:
        7.7
      • getSequenceB

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceB getSequenceB​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceB using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceB within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceE

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceE getSequenceE()
        Get the single occurrence of SequenceE using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Returns:
        a new sequence that may be empty, never returns null
        Since:
        7.7
      • getSequenceE

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceE getSequenceE​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceE using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceE within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceJ

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceJ getSequenceJ()
        Get the single occurrence of SequenceJ using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Returns:
        a new sequence that may be empty, never returns null
        Since:
        7.7
      • getSequenceJ

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceJ getSequenceJ​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceJ using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceJ within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceK

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceK getSequenceK()
        Get the single occurrence of SequenceK using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Returns:
        a new sequence that may be empty, never returns null
        Since:
        7.7
      • getSequenceK

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceK getSequenceK​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceK using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceK within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceL

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceL getSequenceL()
        Get the single occurrence of SequenceL using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Returns:
        a new sequence that may be empty, never returns null
        Since:
        7.7
      • getSequenceL

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceL getSequenceL​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceL using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceL within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceM

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceM getSequenceM()
        Get the single occurrence of SequenceM using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Returns:
        a new sequence that may be empty, never returns null
        Since:
        7.7
      • getSequenceM

        @SequenceStyle(SPLIT_BY_15)
        public MT365.SequenceM getSequenceM​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceM using field field 15 as sequence boundary. The presence of this method indicates that this sequence can occur only once according to the Standard.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceM within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7