Class MT350

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

    @Generated
    public class MT350
    extends AbstractMT
    implements java.io.Serializable
    MT 350 - Advice of Loan/Deposit Interest Payment.

    SWIFT MT350 (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 C (M)
      • Field 21 N (O)
      • Field 82 A,D,J (M)
      • Field 87 A,D,J (M)
      • Field 83 A,D,J (O)
      • Field 72 (O)
    • Sequence B (M)
      • Field 15 B (M)
      • Field 30 G (M)
      • Field 32 B (M)
      • Field 30 V (M)
      • Field 34 B (M)
      • Field 37 M (M)
      • Field 14 D (M)
      • Field 30 F (O)
    • Sequence C (M)
      • Field 15 C (M)
      • Field 53 A,D,J (O)
      • Field 86 A,D,J (O)
      • Field 56 A,D,J (O)
      • Field 57 A,D,J (M)
      • Field 58 A,D,J (O)
    • Sequence D (O)
      • Field 15 D (M)
      • Field 34 B (M)
      • Field 33 B (M)
      • Field 36 (O)
      • Sequence D1 (O)
        • Field 37 L (M)
        • Field 33 E (M)
      • Sequence D2 (O)
        • Field 71 F (M)
        • Field 37 L (O)
        • Field 33 E (O)

    This source code is specific to release SRU 2022

    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  MT350.SequenceA
      Class to model Sequence "A" in MT 350.
      static class  MT350.SequenceB
      Class to model Sequence "B" in MT 350.
      static class  MT350.SequenceC
      Class to model Sequence "C" in MT 350.
      static class  MT350.SequenceD
      Class to model Sequence "D" in MT 350.
      static class  MT350.SequenceD1
      Class to model Sequence "D1" in MT 350.
    • 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
      MT350()
      Creates and initializes a new MT350 input message setting TEST BICS as sender and receiver.
      MT350​(MtSwiftMessage m)
      Creates an MT350 initialized with the parameter MtSwiftMessage.
      MT350​(SwiftMessage m)
      Creates an MT350 initialized with the parameter SwiftMessage.
      MT350​(java.io.File file)
      Creates a new MT350 by parsing a file with the message content in its swift FIN format.
      MT350​(java.io.InputStream stream)
      Creates a new MT350 by parsing a input stream with the message content in its swift FIN format, using "UTF-8" as encoding.
      MT350​(java.lang.String fin)
      Creates a new MT350 by parsing a String with the message content in its swift FIN format.
      MT350​(java.lang.String sender, java.lang.String receiver)
      Creates and initializes a new MT350 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

      • MT350

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

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

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

        public MT350​(java.lang.String sender,
                     java.lang.String receiver)
        Creates and initializes a new MT350 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
      • MT350

        public MT350​(java.lang.String fin)
        Creates a new MT350 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
      • MT350

        public MT350​(java.io.InputStream stream)
              throws java.io.IOException
        Creates a new MT350 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
      • MT350

        public MT350​(java.io.File file)
              throws java.io.IOException
        Creates a new MT350 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 MT350 parse​(MtSwiftMessage m)
        Creates an MT350 initialized with the parameter MtSwiftMessage.
        Parameters:
        m - swift message with the MT350 content
        Returns:
        the created object or null if the parameter is null
        Since:
        7.7
        See Also:
        MT350(String)
      • parse

        public static MT350 parse​(java.lang.String fin)
        Creates a new MT350 by parsing a String with the message content in its swift FIN format. If the fin parameter cannot be parsed, the returned MT350 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 MT350 or null if fin is null
        Since:
        7.7
      • parse

        public static MT350 parse​(java.io.InputStream stream)
                           throws java.io.IOException
        Creates a new MT350 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 MT350 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 MT350 parse​(java.io.File file)
                           throws java.io.IOException
        Creates a new MT350 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 MT350 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 MT350 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 MT350 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 MT350 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 MT350 fromJson​(java.lang.String json)
        Creates an MT350 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 MT350 message
        Returns:
        a new instance of MT350
        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 MT350 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 MT350 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 MT350 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 MT350 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 MT350 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)
      • 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 MT350 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)
      • 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 MT350 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)
      • 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 MT350 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 MT350 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)
      • getField82J

        public Field82J getField82J()
        Iterates through block4 fields and return the first one whose name matches 82J, or null if none is found. The first occurrence of field 82J at MT350 is expected to be the only one.
        Returns:
        a Field82J 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 MT350 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 MT350 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)
      • getField87J

        public Field87J getField87J()
        Iterates through block4 fields and return the first one whose name matches 87J, or null if none is found. The first occurrence of field 87J at MT350 is expected to be the only one.
        Returns:
        a Field87J 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 MT350 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 MT350 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 MT350 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)
      • 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 MT350 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 MT350 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)
      • getField30G

        public Field30G getField30G()
        Iterates through block4 fields and return the first one whose name matches 30G, or null if none is found. The first occurrence of field 30G at MT350 is expected to be the only one.
        Returns:
        a Field30G 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 MT350 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)
      • 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 MT350 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)
      • getField37M

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        public Field15D getField15D()
        Iterates through block4 fields and return the first one whose name matches 15D, or null if none is found. The first occurrence of field 15D at MT350 is expected to be the only one.
        Returns:
        a Field15D 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 MT350 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)
      • getField36

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

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

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

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

        public java.util.List<Field33E> getField33E()
        Iterates through block4 fields and return all occurrences of fields whose names matches 33E, or Collections.emptyList() if none is found. Multiple occurrences of field 33E at MT350 are expected at one sequence or across several sequences.
        Returns:
        a List of Field33E 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 MT350.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 MT350.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 MT350.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 MT350.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
      • getSequenceC

        @SequenceStyle(SPLIT_BY_15)
        public MT350.SequenceC getSequenceC()
        Get the single occurrence of SequenceC 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
      • getSequenceC

        @SequenceStyle(SPLIT_BY_15)
        public MT350.SequenceC getSequenceC​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceC 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 SequenceC within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceD

        @SequenceStyle(SPLIT_BY_15)
        public MT350.SequenceD getSequenceD()
        Get the single occurrence of SequenceD 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
      • getSequenceD

        @SequenceStyle(SPLIT_BY_15)
        public MT350.SequenceD getSequenceD​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceD 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 SequenceD within it
        Returns:
        the found sequence or an empty sequence if none is found, never returns null
        Since:
        7.7
      • getSequenceD1

        @SequenceStyle(GENERATED_FIXED_WITH_OPTIONAL_TAIL)
        public MT350.SequenceD1 getSequenceD1()
        Get the single occurrence of SequenceD1 delimited by leading tag and end, with an optional tail. The presence of this method indicates that this sequence can occur only once according to the Standard. If block 4 is empty this method returns null.
        Returns:
        the found sequence or an empty sequence if none is found
        See Also:
        SwiftTagListBlock.getSubBlockDelimitedWithOptionalTail(String[], String[], String[])
      • getSequenceD1

        @SequenceStyle(GENERATED_FIXED_WITH_OPTIONAL_TAIL)
        public MT350.SequenceD1 getSequenceD1​(SwiftTagListBlock parentSequence)
        Get the single occurrence of SequenceD1 delimited by leading tag and end, with an optional tail. The presence of this method indicates that this sequence can occur only once according to the Standard. If block 4 is empty this method returns null.
        Parameters:
        parentSequence - a not null parent sequence to find SequenceD1 within it
        Returns:
        the found sequence or an empty sequence if none is found, or null if the parent sequence is null or empty
        Since:
        7.7
        See Also:
        SwiftTagListBlock.getSubBlockDelimitedWithOptionalTail(String[], String[], String[])