All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mt.mt3xx.MT304 Maven / Gradle / Ivy

There is a newer version: SRU2023-10.1.16
Show newest version
/*
 * Copyright 2006-2023 Prowide
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.prowidesoftware.swift.model.mt.mt3xx;



import com.prowidesoftware.Generated;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Collections;

import org.apache.commons.lang3.StringUtils;

import com.prowidesoftware.swift.model.*;
import com.prowidesoftware.swift.internal.*;
import com.prowidesoftware.swift.internal.SequenceStyle.Type;
import com.prowidesoftware.swift.model.field.*;
import com.prowidesoftware.swift.model.mt.AbstractMT;
import com.prowidesoftware.swift.utils.Lib;
import java.io.File;
import java.io.InputStream;
import java.io.IOException;

/**
 * MT 304 - Advice/Instruction of a Third Party Deal.
 *
 * 

* SWIFT MT304 (ISO 15022) message structure: *

  • Sequence A (M)
    • Field 15 A (M)
    • Field 20 (M)
    • Field 21 (O)
    • Field 22 A (M)
    • Field 94 A (M)
    • Field 17 O (O)
    • Field 17 F (O)
    • Field 17 N (O)
    • Field 83 A,J (M)
    • Field 82 A,J (M)
    • Field 87 A,J (M)
    • Field 81 A,D,J (O)
    • Field 89 A,D,J (O)
    • Field 17 I (O)
    • Field 77 H (O)
    • Field 14 C (O)
    • Field 32 E (O)
    • Field 30 U (O)
    • Field 14 S (O) (repetitive)
    • Field 26 K (O)
    • Field 21 A (O)
    • Field 14 E (O)
  • Sequence B (M)
    • Field 15 B (M)
    • Field 30 T (M)
    • Field 30 V (M)
    • Field 36 (M)
    • Field 39 M (O)
    • Field 35 C (O)
    • Sequence B1 (M)
      • Field 32 B (M)
      • Field 53 A,J (M)
      • Field 56 A,J (O)
      • Field 57 A,J (O)
    • Sequence B2 (M)
      • Field 33 B (M)
      • Field 53 A,J (O)
      • Field 56 A,J (O)
      • Field 57 A,J (M)
      • Field 58 A,J (O)
  • Sequence C (O)
    • Field 15 C (M)
    • Field 21 A (O)
    • Field 21 G (O)
    • Sequence C1 (O) (repetitive)
      • Field 22 L (M)
      • Field 22 M (M)
      • Field 22 N (M)
      • Sequence C1a (O) (repetitive)
        • Field 22 P (M)
        • Field 22 R (M)
    • Field 22 U (O)
    • Field 35 B (O)
    • Field 22 V (O)
    • Field 98 D (O)
    • Field 98 G (O)
    • Field 98 H (O)
    • Field 29 A (O)
    • Field 34 C (O) (repetitive)
    • Field 72 (O)
  • Sequence D (O)
    • Field 15 D (M)
    • Field 21 P (O) (repetitive)
    • Field 17 G (O)
    • Field 32 G (O)
    • Field 34 B (O)
    • Field 30 F (O)
  • Sequence E (O)
    • Field 15 E (M)
    • Field 17 G (M)
    • Field 32 G (M)
    • Field 53 A,D,J (O)
    • Field 56 A,D,J (O)
    • Field 57 A,D,J (O)
    • Field 58 A,D,J (O)
* *

* This source code is specific to release SRU 2023 *

* For additional resources check https://www.prowidesoftware.com/resources */ @Generated public class MT304 extends AbstractMT implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ public static final int SRU = 2023; private static final long serialVersionUID = 1L; private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(MT304.class.getName()); /** * Constant for MT name, this is part of the classname, after MT. */ public static final String NAME = "304"; /** * Creates an MT304 initialized with the parameter SwiftMessage. * @param m swift message with the MT304 content */ public MT304(final SwiftMessage m) { super(m); sanityCheck(m); } /** * Creates an MT304 initialized with the parameter MtSwiftMessage. * @param m swift message with the MT304 content, the parameter can not be null * @see #MT304(String) */ public MT304(final MtSwiftMessage m) { this(m.message()); } /** * Creates an MT304 initialized with the parameter MtSwiftMessage. * * @param m swift message with the MT304 content * @return the created object or null if the parameter is null * @see #MT304(String) * @since 7.7 */ public static MT304 parse(final MtSwiftMessage m) { if (m == null) { return null; } return new MT304(m); } /** * Creates and initializes a new MT304 input message setting TEST BICS as sender and receiver. * All mandatory header attributes are completed with default values. * * @since 7.6 */ public MT304() { this(BIC.TEST8, BIC.TEST8); } /** * Creates and initializes a new MT304 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, * * @param sender the sender address as a bic8, bic11 or full logical terminal consisting of 12 characters * @param receiver the receiver address as a bic8, bic11 or full logical terminal consisting of 12 characters * @since 7.7 */ public MT304(final String sender, final String receiver) { super(304, sender, receiver); } /** * Creates a new MT304 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. * * @param fin a string with the MT message in its FIN swift format * @since 7.7 */ public MT304(final String fin) { super(); if (fin != null) { final SwiftMessage parsed = read(fin); if (parsed != null) { super.m = parsed; sanityCheck(parsed); } } } private void sanityCheck(final SwiftMessage param) { if (param.isServiceMessage()) { log.warning("Creating an MT304 object from FIN content with a Service Message. Check if the MT304 you are intended to read is prepended with and ACK."); } else if (!StringUtils.equals(param.getType(), "304")) { log.warning("Creating an MT304 object from FIN content with message type "+param.getType()); } } /** * Creates a new MT304 by parsing a String with the message content in its swift FIN format. * If the fin parameter cannot be parsed, the returned MT304 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. * * @param fin a string with the MT message in its FIN swift format. fin may be null in which case this method returns null * @return a new instance of MT304 or null if fin is null * @since 7.7 */ public static MT304 parse(final String fin) { if (fin == null) { return null; } return new MT304(fin); } /** * Creates a new MT304 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. * * @param stream an input stream in UTF-8 encoding with the MT message in its FIN swift format. * @throws IOException if the stream data cannot be read * @since 7.7 */ public MT304(final InputStream stream) throws IOException { this(Lib.readStream(stream)); } /** * Creates a new MT304 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. * * @param stream an input stream in UTF-8 encoding with the MT message in its FIN swift format. * @return a new instance of MT304 or null if stream is null or the message cannot be parsed * @throws IOException if the stream data cannot be read * @since 7.7 */ public static MT304 parse(final InputStream stream) throws IOException { if (stream == null) { return null; } return new MT304(stream); } /** * Creates a new MT304 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. * * @param file a file with the MT message in its FIN swift format. * @throws IOException if the file content cannot be read * @since 7.7 */ public MT304(final File file) throws IOException { this(Lib.readFile(file)); } /** * Creates a new MT304 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. * * @param file a file with the MT message in its FIN swift format. * @return a new instance of MT304 or null if; file is null, does not exist, can't be read, is not a file or the message cannot be parsed * @throws IOException if the file content cannot be read * @since 7.7 */ public static MT304 parse(final File file) throws IOException { if (file == null) { return null; } return new MT304(file); } /** * Returns this MT number. * @return the message type number of this MT * @since 6.4 */ @Override public String getMessageType() { return "304"; } /** * Add all tags from block to the end of the block4. * * @param block to append * @return this object to allow method chaining * @since 7.6 */ @Override public MT304 append(final SwiftTagListBlock block) { super.append(block); return this; } /** * Add all tags to the end of the block4. * * @param tags to append * @return this object to allow method chaining * @since 7.6 */ @Override public MT304 append(final Tag... tags) { super.append(tags); return this; } /** * Add all the fields to the end of the block4. * * @param fields to append * @return this object to allow method chaining * @since 7.6 */ @Override public MT304 append(final Field... fields) { super.append(fields); return this; } /** * Creates an MT304 messages from its JSON representation. *

* For generic conversion of JSON into the corresponding MT instance * see {@link AbstractMT#fromJson(String)} * * @param json a JSON representation of an MT304 message * @return a new instance of MT304 * @since 7.10.3 */ public static MT304 fromJson(final String json) { return (MT304) AbstractMT.fromJson(json); } /** * 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 MT304 is expected to be the only one. * * @return a Field15A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field15A getField15A() { final Tag t = tag("15A"); if (t != null) { return new Field15A(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field20 object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field20 getField20() { final Tag t = tag("20"); if (t != null) { return new Field20(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field21 object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field21 getField21() { final Tag t = tag("21"); if (t != null) { return new Field21(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field22A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field22A getField22A() { final Tag t = tag("22A"); if (t != null) { return new Field22A(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field94A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field94A getField94A() { final Tag t = tag("94A"); if (t != null) { return new Field94A(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17O, * or null if none is found. * The first occurrence of field 17O at MT304 is expected to be the only one. * * @return a Field17O object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17O getField17O() { final Tag t = tag("17O"); if (t != null) { return new Field17O(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17F, * or null if none is found. * The first occurrence of field 17F at MT304 is expected to be the only one. * * @return a Field17F object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17F getField17F() { final Tag t = tag("17F"); if (t != null) { return new Field17F(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17N, * or null if none is found. * The first occurrence of field 17N at MT304 is expected to be the only one. * * @return a Field17N object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17N getField17N() { final Tag t = tag("17N"); if (t != null) { return new Field17N(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field83A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field83A getField83A() { final Tag t = tag("83A"); if (t != null) { return new Field83A(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field83J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field83J getField83J() { final Tag t = tag("83J"); if (t != null) { return new Field83J(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field82A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field82A getField82A() { final Tag t = tag("82A"); if (t != null) { return new Field82A(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field82J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field82J getField82J() { final Tag t = tag("82J"); if (t != null) { return new Field82J(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field87A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field87A getField87A() { final Tag t = tag("87A"); if (t != null) { return new Field87A(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field87J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field87J getField87J() { final Tag t = tag("87J"); if (t != null) { return new Field87J(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 81A, * or null if none is found. * The first occurrence of field 81A at MT304 is expected to be the only one. * * @return a Field81A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field81A getField81A() { final Tag t = tag("81A"); if (t != null) { return new Field81A(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 81D, * or null if none is found. * The first occurrence of field 81D at MT304 is expected to be the only one. * * @return a Field81D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field81D getField81D() { final Tag t = tag("81D"); if (t != null) { return new Field81D(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 81J, * or null if none is found. * The first occurrence of field 81J at MT304 is expected to be the only one. * * @return a Field81J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field81J getField81J() { final Tag t = tag("81J"); if (t != null) { return new Field81J(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 89A, * or null if none is found. * The first occurrence of field 89A at MT304 is expected to be the only one. * * @return a Field89A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field89A getField89A() { final Tag t = tag("89A"); if (t != null) { return new Field89A(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 89D, * or null if none is found. * The first occurrence of field 89D at MT304 is expected to be the only one. * * @return a Field89D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field89D getField89D() { final Tag t = tag("89D"); if (t != null) { return new Field89D(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 89J, * or null if none is found. * The first occurrence of field 89J at MT304 is expected to be the only one. * * @return a Field89J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field89J getField89J() { final Tag t = tag("89J"); if (t != null) { return new Field89J(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17I, * or null if none is found. * The first occurrence of field 17I at MT304 is expected to be the only one. * * @return a Field17I object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17I getField17I() { final Tag t = tag("17I"); if (t != null) { return new Field17I(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 77H, * or null if none is found. * The first occurrence of field 77H at MT304 is expected to be the only one. * * @return a Field77H object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field77H getField77H() { final Tag t = tag("77H"); if (t != null) { return new Field77H(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 14C, * or null if none is found. * The first occurrence of field 14C at MT304 is expected to be the only one. * * @return a Field14C object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field14C getField14C() { final Tag t = tag("14C"); if (t != null) { return new Field14C(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 32E, * or null if none is found. * The first occurrence of field 32E at MT304 is expected to be the only one. * * @return a Field32E object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field32E getField32E() { final Tag t = tag("32E"); if (t != null) { return new Field32E(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 30U, * or null if none is found. * The first occurrence of field 30U at MT304 is expected to be the only one. * * @return a Field30U object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field30U getField30U() { final Tag t = tag("30U"); if (t != null) { return new Field30U(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 26K, * or null if none is found. * The first occurrence of field 26K at MT304 is expected to be the only one. * * @return a Field26K object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field26K getField26K() { final Tag t = tag("26K"); if (t != null) { return new Field26K(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 14E, * or null if none is found. * The first occurrence of field 14E at MT304 is expected to be the only one. * * @return a Field14E object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field14E getField14E() { final Tag t = tag("14E"); if (t != null) { return new Field14E(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field15B object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field15B getField15B() { final Tag t = tag("15B"); if (t != null) { return new Field15B(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field30T object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field30T getField30T() { final Tag t = tag("30T"); if (t != null) { return new Field30T(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field30V object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field30V getField30V() { final Tag t = tag("30V"); if (t != null) { return new Field30V(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field36 object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field36 getField36() { final Tag t = tag("36"); if (t != null) { return new Field36(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 39M, * or null if none is found. * The first occurrence of field 39M at MT304 is expected to be the only one. * * @return a Field39M object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field39M getField39M() { final Tag t = tag("39M"); if (t != null) { return new Field39M(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 35C, * or null if none is found. * The first occurrence of field 35C at MT304 is expected to be the only one. * * @return a Field35C object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field35C getField35C() { final Tag t = tag("35C"); if (t != null) { return new Field35C(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field32B object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field32B getField32B() { final Tag t = tag("32B"); if (t != null) { return new Field32B(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field33B object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field33B getField33B() { final Tag t = tag("33B"); if (t != null) { return new Field33B(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field15C object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field15C getField15C() { final Tag t = tag("15C"); if (t != null) { return new Field15C(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 21G, * or null if none is found. * The first occurrence of field 21G at MT304 is expected to be the only one. * * @return a Field21G object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field21G getField21G() { final Tag t = tag("21G"); if (t != null) { return new Field21G(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 22U, * or null if none is found. * The first occurrence of field 22U at MT304 is expected to be the only one. * * @return a Field22U object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field22U getField22U() { final Tag t = tag("22U"); if (t != null) { return new Field22U(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 35B, * or null if none is found. * The first occurrence of field 35B at MT304 is expected to be the only one. * * @return a Field35B object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field35B getField35B() { final Tag t = tag("35B"); if (t != null) { return new Field35B(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 22V, * or null if none is found. * The first occurrence of field 22V at MT304 is expected to be the only one. * * @return a Field22V object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field22V getField22V() { final Tag t = tag("22V"); if (t != null) { return new Field22V(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 98D, * or null if none is found. * The first occurrence of field 98D at MT304 is expected to be the only one. * * @return a Field98D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field98D getField98D() { final Tag t = tag("98D"); if (t != null) { return new Field98D(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 98G, * or null if none is found. * The first occurrence of field 98G at MT304 is expected to be the only one. * * @return a Field98G object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field98G getField98G() { final Tag t = tag("98G"); if (t != null) { return new Field98G(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 98H, * or null if none is found. * The first occurrence of field 98H at MT304 is expected to be the only one. * * @return a Field98H object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field98H getField98H() { final Tag t = tag("98H"); if (t != null) { return new Field98H(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field29A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field29A getField29A() { final Tag t = tag("29A"); if (t != null) { return new Field29A(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field72 object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field72 getField72() { final Tag t = tag("72"); if (t != null) { return new Field72(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field15D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field15D getField15D() { final Tag t = tag("15D"); if (t != null) { return new Field15D(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 34B, * or null if none is found. * The first occurrence of field 34B at MT304 is expected to be the only one. * * @return a Field34B object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field34B getField34B() { final Tag t = tag("34B"); if (t != null) { return new Field34B(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field30F object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field30F getField30F() { final Tag t = tag("30F"); if (t != null) { return new Field30F(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field15E object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field15E getField15E() { final Tag t = tag("15E"); if (t != null) { return new Field15E(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field53D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field53D getField53D() { final Tag t = tag("53D"); if (t != null) { return new Field53D(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field56D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field56D getField56D() { final Tag t = tag("56D"); if (t != null) { return new Field56D(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field57D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field57D getField57D() { final Tag t = tag("57D"); if (t != null) { return new Field57D(t.getValue()); } else { return null; } } /** * 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 MT304 is expected to be the only one. * * @return a Field58D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field58D getField58D() { final Tag t = tag("58D"); if (t != null) { return new Field58D(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 14S, * or Collections.emptyList() if none is found. * Multiple occurrences of field 14S at MT304 are expected at one sequence or across several sequences. * * @return a List of Field14S objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField14S() { final List result = new ArrayList<>(); final Tag[] tags = tags("14S"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field14S(tag.getValue())); } } return result; } /** * 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 MT304 are expected at one sequence or across several sequences. * * @return a List of Field53A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField53A() { final List result = new ArrayList<>(); final Tag[] tags = tags("53A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field53A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 53J, * or Collections.emptyList() if none is found. * Multiple occurrences of field 53J at MT304 are expected at one sequence or across several sequences. * * @return a List of Field53J objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField53J() { final List result = new ArrayList<>(); final Tag[] tags = tags("53J"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field53J(tag.getValue())); } } return result; } /** * 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 MT304 are expected at one sequence or across several sequences. * * @return a List of Field56A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField56A() { final List result = new ArrayList<>(); final Tag[] tags = tags("56A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field56A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 56J, * or Collections.emptyList() if none is found. * Multiple occurrences of field 56J at MT304 are expected at one sequence or across several sequences. * * @return a List of Field56J objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField56J() { final List result = new ArrayList<>(); final Tag[] tags = tags("56J"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field56J(tag.getValue())); } } return result; } /** * 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 MT304 are expected at one sequence or across several sequences. * * @return a List of Field57A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField57A() { final List result = new ArrayList<>(); final Tag[] tags = tags("57A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field57A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 57J, * or Collections.emptyList() if none is found. * Multiple occurrences of field 57J at MT304 are expected at one sequence or across several sequences. * * @return a List of Field57J objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField57J() { final List result = new ArrayList<>(); final Tag[] tags = tags("57J"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field57J(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 21A, * or Collections.emptyList() if none is found. * Multiple occurrences of field 21A at MT304 are expected at one sequence or across several sequences. * * @return a List of Field21A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField21A() { final List result = new ArrayList<>(); final Tag[] tags = tags("21A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field21A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 22L, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22L at MT304 are expected at one sequence or across several sequences. * * @return a List of Field22L objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField22L() { final List result = new ArrayList<>(); final Tag[] tags = tags("22L"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field22L(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 22M, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22M at MT304 are expected at one sequence or across several sequences. * * @return a List of Field22M objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField22M() { final List result = new ArrayList<>(); final Tag[] tags = tags("22M"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field22M(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 22N, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22N at MT304 are expected at one sequence or across several sequences. * * @return a List of Field22N objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField22N() { final List result = new ArrayList<>(); final Tag[] tags = tags("22N"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field22N(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 22P, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22P at MT304 are expected at one sequence or across several sequences. * * @return a List of Field22P objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField22P() { final List result = new ArrayList<>(); final Tag[] tags = tags("22P"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field22P(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 22R, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22R at MT304 are expected at one sequence or across several sequences. * * @return a List of Field22R objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField22R() { final List result = new ArrayList<>(); final Tag[] tags = tags("22R"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field22R(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 34C, * or Collections.emptyList() if none is found. * Multiple occurrences of field 34C at MT304 are expected at one sequence or across several sequences. * * @return a List of Field34C objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField34C() { final List result = new ArrayList<>(); final Tag[] tags = tags("34C"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field34C(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 21P, * or Collections.emptyList() if none is found. * Multiple occurrences of field 21P at MT304 are expected at one sequence or across several sequences. * * @return a List of Field21P objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField21P() { final List result = new ArrayList<>(); final Tag[] tags = tags("21P"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field21P(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 17G, * or Collections.emptyList() if none is found. * Multiple occurrences of field 17G at MT304 are expected at one sequence or across several sequences. * * @return a List of Field17G objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField17G() { final List result = new ArrayList<>(); final Tag[] tags = tags("17G"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field17G(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 32G, * or Collections.emptyList() if none is found. * Multiple occurrences of field 32G at MT304 are expected at one sequence or across several sequences. * * @return a List of Field32G objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField32G() { final List result = new ArrayList<>(); final Tag[] tags = tags("32G"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field32G(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 58A, * or Collections.emptyList() if none is found. * Multiple occurrences of field 58A at MT304 are expected at one sequence or across several sequences. * * @return a List of Field58A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField58A() { final List result = new ArrayList<>(); final Tag[] tags = tags("58A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field58A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 58J, * or Collections.emptyList() if none is found. * Multiple occurrences of field 58J at MT304 are expected at one sequence or across several sequences. * * @return a List of Field58J objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField58J() { final List result = new ArrayList<>(); final Tag[] tags = tags("58J"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field58J(tag.getValue())); } } return result; } /** * Class to model Sequence "A" in MT 304. */ @SequenceStyle(Type.SPLIT_BY_15) public static class SequenceA extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceA() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceA(final SwiftTagListBlock content) { super(content.getTags()); } public static final Tag START_TAG = Field15A.emptyTag(); /** * Creates a new instance of this sequence with the given tags inside. * @param tags may be null, an empty sequence containing only start and end sequence tags will be returned * @return a new instance of the sequence, initialized with the parameter tags * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public static SequenceA newInstance(final Tag... tags) { final SequenceA result = new SequenceA(); result.append(START_TAG); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } return result; } /** * Create an empty $sequenceClassname. * This method is intended to avoid disambiguation for the newInstance() with variable list of blocks or tags * @return a new instance of the sequence * @since 7.7 */ public static SequenceA newInstance() { final SequenceA result = new SequenceA(); result.append(START_TAG); return result; } /** * Create a new instance of $sequenceClassname and add the contents of all sequences given inside. * Mainly intended to create a sequence by adding subsequences * @param sequences a list of blocks to set as the new sequence content * @return a new instance of the sequence, initialized with the parameter sequences content * @since 7.7 */ public static SequenceA newInstance(final SwiftTagListBlock... sequences) { final SequenceA result = new SequenceA(); result.append(START_TAG); if (sequences != null && sequences.length > 0) { for (final SwiftTagListBlock s : sequences) { result.addTags(s.getTags()); } } return result; } } /** * 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. * * @since 7.7 * @return a new sequence that may be empty, never returns null */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceA getSequenceA() { return getSequenceA(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * 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. * * @param parentSequence a not null parent sequence to find SequenceA within it * @return the found sequence or an empty sequence if none is found, never returns null * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceA getSequenceA(SwiftTagListBlock parentSequence) { final java.util.Map map = SwiftMessageUtils.splitByField15(parentSequence); if (map.containsKey("A")) { return new SequenceA(map.get("A")); } return new SequenceA(); } /** * Class to model Sequence "B" in MT 304. */ @SequenceStyle(Type.SPLIT_BY_15) public static class SequenceB extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceB() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceB(final SwiftTagListBlock content) { super(content.getTags()); } public static final Tag START_TAG = Field15B.emptyTag(); /** * Creates a new instance of this sequence with the given tags inside. * @param tags may be null, an empty sequence containing only start and end sequence tags will be returned * @return a new instance of the sequence, initialized with the parameter tags * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public static SequenceB newInstance(final Tag... tags) { final SequenceB result = new SequenceB(); result.append(START_TAG); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } return result; } /** * Create an empty $sequenceClassname. * This method is intended to avoid disambiguation for the newInstance() with variable list of blocks or tags * @return a new instance of the sequence * @since 7.7 */ public static SequenceB newInstance() { final SequenceB result = new SequenceB(); result.append(START_TAG); return result; } /** * Create a new instance of $sequenceClassname and add the contents of all sequences given inside. * Mainly intended to create a sequence by adding subsequences * @param sequences a list of blocks to set as the new sequence content * @return a new instance of the sequence, initialized with the parameter sequences content * @since 7.7 */ public static SequenceB newInstance(final SwiftTagListBlock... sequences) { final SequenceB result = new SequenceB(); result.append(START_TAG); if (sequences != null && sequences.length > 0) { for (final SwiftTagListBlock s : sequences) { result.addTags(s.getTags()); } } return result; } } /** * 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. * * @since 7.7 * @return a new sequence that may be empty, never returns null */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceB getSequenceB() { return getSequenceB(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * 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. * * @param parentSequence a not null parent sequence to find SequenceB within it * @return the found sequence or an empty sequence if none is found, never returns null * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceB getSequenceB(SwiftTagListBlock parentSequence) { final java.util.Map map = SwiftMessageUtils.splitByField15(parentSequence); if (map.containsKey("B")) { return new SequenceB(map.get("B")); } return new SequenceB(); } /** * Class to model Sequence "B1" in MT 304. */ public static class SequenceB1 extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceB1() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceB1(final SwiftTagListBlock content) { super(content.getTags()); } /** * First mandatory tag name of the sequence: "32B". */ public static final String START = "32B" ; /** * Boundary mandatory tag indicating the end of the sequence (excluded from the actual sequence): "33B" */ protected static final String END = "33B"; /** * Creates a sequence with starting and ending tags set to the indicated tags in from the * {@link #START} and {@link #END} lists of mandatory fields, and with the content between * the starting and ending tag initialized with the given optional tags. * * @param tags the list of tags to set as sequence content * @return a new instance of the sequence, initialized with the parameter tags */ @SequenceStyle(Type.GENERATED_BETWEEN_TAGS) public static SequenceB1 newInstance(final Tag... tags) { final SequenceB1 result = new SequenceB1(); result.append(new Tag(START, "")); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } result.append(new Tag(END, "")); return result; } } /** * Get the single occurrence of SequenceB1 delimited by start tag and end tag (the end tag is excluded). * 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. * * @return the found sequence or an empty sequence if none is found */ @SequenceStyle(Type.GENERATED_BETWEEN_TAGS) public SequenceB1 getSequenceB1() { return getSequenceB1(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the single occurrence of SequenceB1 delimited by start tag and end tag (the end tag is excluded). * 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. * * @param parentSequence a not null parent sequence to find SequenceB1 within it * @return the found sequence or an empty sequence if none is found, or null if the parent sequence is null or empty * @since 9.2.7 */ @SequenceStyle(Type.GENERATED_BETWEEN_TAGS) public SequenceB1 getSequenceB1(SwiftTagListBlock parentSequence) { if (parentSequence != null && !parentSequence.isEmpty()) { final SwiftTagListBlock content = parentSequence.getSubBlock(SequenceB1.START, SequenceB1.END); content.removeTag(SequenceB1.END); if (log.isLoggable(java.util.logging.Level.FINE)) { if (content == null) { log.fine("content for sequence SequenceB1: is null"); } else { log.fine("content for sequence SequenceB1: "+content.tagNamesList()); } } if (content == null) { return new SequenceB1(); } else { return new SequenceB1(content); } } return null; } /** * Class to model Sequence "B2" in MT 304. */ public static class SequenceB2 extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceB2() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceB2(final SwiftTagListBlock content) { super(content.getTags()); } /** * First mandatory tag name of the sequence: "33B" . * Array format is for cases when more than one letter options is allowed */ public static final String[] START = { "33B" } ; /** * Last mandatory tag name of the sequence: "57A", "57J" * Array format is for cases when more than one letter options is allowed */ protected static final String[] END = { "57A", "57J" }; /** * List of optional tags after the last mandatory tag. */ protected static final String[] TAIL = new String[]{ "58A", "58J" }; /** * Same as {@link #newInstance(int, int, Tag...)} using zero for the indexes. * @param tags the list of tags to set as sequence content * @return a new instance of the sequence, initialized with the parameter tags */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static SequenceB2 newInstance(final Tag... tags) { return newInstance(0, 0, tags); } /** * Creates a sequence with starting and ending tags set to the indicated tags in from the * {@link #START} and {@link #END} lists of mandatory fields, and with the content between * the starting and ending tag initialized with the given optional tags. * * @param start a zero-based index within the list of mandatory starting tags in the sequence * @param end a zero-based index within the list of mandatory ending tags in the sequence * @param tags the list of tags to set as sequence content * @return a new instance of the sequence, initialized with the parameter tags */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static SequenceB2 newInstance(final int start, final int end, final Tag... tags) { final SequenceB2 result = new SequenceB2(); result.append(new Tag(START[start], "")); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } result.append(new Tag(END[end], "")); return result; } } /** * Get the single occurrence of SequenceB2 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. * * @return the found sequence or an empty sequence if none is found * @see SwiftTagListBlock#getSubBlockDelimitedWithOptionalTail(String[], String[], String[]) */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public SequenceB2 getSequenceB2() { return getSequenceB2(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the single occurrence of SequenceB2 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. * * @see SwiftTagListBlock#getSubBlockDelimitedWithOptionalTail(String[], String[], String[]) * @param parentSequence a not null parent sequence to find SequenceB2 within it * @return the found sequence or an empty sequence if none is found, or null if the parent sequence is null or empty * @since 7.7 */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public SequenceB2 getSequenceB2(SwiftTagListBlock parentSequence) { if (parentSequence != null && !parentSequence.isEmpty()) { final SwiftTagListBlock content = parentSequence.getSubBlockDelimitedWithOptionalTail(SequenceB2.START, SequenceB2.END, SequenceB2.TAIL); if (log.isLoggable(java.util.logging.Level.FINE)) { if (content == null) { log.fine("content for sequence SequenceB2: is null"); } else { log.fine("content for sequence SequenceB2: "+content.tagNamesList()); } } if (content == null) { return new SequenceB2(); } else { return new SequenceB2(content); } } return null; } /** * Class to model Sequence "C" in MT 304. */ @SequenceStyle(Type.SPLIT_BY_15) public static class SequenceC extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceC() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceC(final SwiftTagListBlock content) { super(content.getTags()); } public static final Tag START_TAG = Field15C.emptyTag(); /** * Creates a new instance of this sequence with the given tags inside. * @param tags may be null, an empty sequence containing only start and end sequence tags will be returned * @return a new instance of the sequence, initialized with the parameter tags * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public static SequenceC newInstance(final Tag... tags) { final SequenceC result = new SequenceC(); result.append(START_TAG); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } return result; } /** * Create an empty $sequenceClassname. * This method is intended to avoid disambiguation for the newInstance() with variable list of blocks or tags * @return a new instance of the sequence * @since 7.7 */ public static SequenceC newInstance() { final SequenceC result = new SequenceC(); result.append(START_TAG); return result; } /** * Create a new instance of $sequenceClassname and add the contents of all sequences given inside. * Mainly intended to create a sequence by adding subsequences * @param sequences a list of blocks to set as the new sequence content * @return a new instance of the sequence, initialized with the parameter sequences content * @since 7.7 */ public static SequenceC newInstance(final SwiftTagListBlock... sequences) { final SequenceC result = new SequenceC(); result.append(START_TAG); if (sequences != null && sequences.length > 0) { for (final SwiftTagListBlock s : sequences) { result.addTags(s.getTags()); } } return result; } } /** * 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. * * @since 7.7 * @return a new sequence that may be empty, never returns null */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceC getSequenceC() { return getSequenceC(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * 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. * * @param parentSequence a not null parent sequence to find SequenceC within it * @return the found sequence or an empty sequence if none is found, never returns null * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceC getSequenceC(SwiftTagListBlock parentSequence) { final java.util.Map map = SwiftMessageUtils.splitByField15(parentSequence); if (map.containsKey("C")) { return new SequenceC(map.get("C")); } return new SequenceC(); } /** * Class to model Sequence "C1" in MT 304. */ public static class SequenceC1 extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceC1() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceC1(final SwiftTagListBlock content) { super(content.getTags()); } /** * First mandatory tag name of the sequence: "22L" . * Array format is for cases when more than one letter options is allowed */ public static final String[] START = { "22L" } ; /** * Last mandatory tag name of the sequence: "22N" * Array format is for cases when more than one letter options is allowed */ protected static final String[] END = { "22N" }; /** * List of optional tags after the last mandatory tag. */ protected static final String[] TAIL = new String[]{ }; /** * Same as {@link #newInstance(int, int, Tag...)} using zero for the indexes. * @param tags the list of tags to set as sequence content * @return a new instance of the sequence, initialized with the parameter tags */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static SequenceC1 newInstance(final Tag... tags) { return newInstance(0, 0, tags); } /** * Creates a sequence with starting and ending tags set to the indicated tags in from the * {@link #START} and {@link #END} lists of mandatory fields, and with the content between * the starting and ending tag initialized with the given optional tags. * * @param start a zero-based index within the list of mandatory starting tags in the sequence * @param end a zero-based index within the list of mandatory ending tags in the sequence * @param tags the list of tags to set as sequence content * @return a new instance of the sequence, initialized with the parameter tags */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static SequenceC1 newInstance(final int start, final int end, final Tag... tags) { final SequenceC1 result = new SequenceC1(); result.append(new Tag(START[start], "")); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } result.append(new Tag(END[end], "")); return result; } } /** * Get the list of SequenceC1 delimited by leading tag and end, with an optional tail. * The presence of this method indicates that this sequence can occur more than once according to the Standard. * If message is empty or no sequences are found an empty list is returned. * * @return the found sequences or an empty list if none is found * @see SwiftTagListBlock#getSubBlocksDelimitedWithOptionalTail(String[], String[], String[]) */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public List getSequenceC1List() { return getSequenceC1List(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the list of SequenceC1 delimited by leading tag and end, with an optional tail. * The presence of this method indicates that this sequence can occur more than once according to the Standard. * If message is empty or no sequences are found an empty list is returned. * * @see SwiftTagListBlock#getSubBlocksDelimitedWithOptionalTail(String[], String[], String[]) * @param parentSequence a not null parent sequence to find SequenceC1 within it * @return the found sequences or an empty list if none is found or parent sequence is null * @since 7.7 */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static List getSequenceC1List(final SwiftTagListBlock parentSequence) { if (parentSequence != null) { final List blocks = parentSequence.getSubBlocksDelimitedWithOptionalTail(SequenceC1.START, SequenceC1.END, SequenceC1.TAIL); if (blocks != null && !blocks.isEmpty()) { final List result = new ArrayList<>(blocks.size()); for (final SwiftTagListBlock b : blocks) { result.add(new SequenceC1(b)); } return result; } } return Collections.emptyList(); } /** * Class to model Sequence "C1a" in MT 304. */ public static class SequenceC1a extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceC1a() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceC1a(final SwiftTagListBlock content) { super(content.getTags()); } /** * First mandatory tag name of the sequence: "22P" . * Array format is for cases when more than one letter options is allowed */ public static final String[] START = { "22P" } ; /** * Last mandatory tag name of the sequence: "22R" * Array format is for cases when more than one letter options is allowed */ protected static final String[] END = { "22R" }; /** * List of optional tags after the last mandatory tag. */ protected static final String[] TAIL = new String[]{ }; /** * Same as {@link #newInstance(int, int, Tag...)} using zero for the indexes. * @param tags the list of tags to set as sequence content * @return a new instance of the sequence, initialized with the parameter tags */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static SequenceC1a newInstance(final Tag... tags) { return newInstance(0, 0, tags); } /** * Creates a sequence with starting and ending tags set to the indicated tags in from the * {@link #START} and {@link #END} lists of mandatory fields, and with the content between * the starting and ending tag initialized with the given optional tags. * * @param start a zero-based index within the list of mandatory starting tags in the sequence * @param end a zero-based index within the list of mandatory ending tags in the sequence * @param tags the list of tags to set as sequence content * @return a new instance of the sequence, initialized with the parameter tags */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static SequenceC1a newInstance(final int start, final int end, final Tag... tags) { final SequenceC1a result = new SequenceC1a(); result.append(new Tag(START[start], "")); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } result.append(new Tag(END[end], "")); return result; } } /** * Get the list of SequenceC1a delimited by leading tag and end, with an optional tail. * The presence of this method indicates that this sequence can occur more than once according to the Standard. * If message is empty or no sequences are found an empty list is returned. * * @return the found sequences or an empty list if none is found * @see SwiftTagListBlock#getSubBlocksDelimitedWithOptionalTail(String[], String[], String[]) */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public List getSequenceC1aList() { return getSequenceC1aList(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the list of SequenceC1a delimited by leading tag and end, with an optional tail. * The presence of this method indicates that this sequence can occur more than once according to the Standard. * If message is empty or no sequences are found an empty list is returned. * * @see SwiftTagListBlock#getSubBlocksDelimitedWithOptionalTail(String[], String[], String[]) * @param parentSequence a not null parent sequence to find SequenceC1a within it * @return the found sequences or an empty list if none is found or parent sequence is null * @since 7.7 */ @SequenceStyle(Type.GENERATED_FIXED_WITH_OPTIONAL_TAIL) public static List getSequenceC1aList(final SwiftTagListBlock parentSequence) { if (parentSequence != null) { final List blocks = parentSequence.getSubBlocksDelimitedWithOptionalTail(SequenceC1a.START, SequenceC1a.END, SequenceC1a.TAIL); if (blocks != null && !blocks.isEmpty()) { final List result = new ArrayList<>(blocks.size()); for (final SwiftTagListBlock b : blocks) { result.add(new SequenceC1a(b)); } return result; } } return Collections.emptyList(); } /** * Class to model Sequence "D" in MT 304. */ @SequenceStyle(Type.SPLIT_BY_15) public static class SequenceD extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceD() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceD(final SwiftTagListBlock content) { super(content.getTags()); } public static final Tag START_TAG = Field15D.emptyTag(); /** * Creates a new instance of this sequence with the given tags inside. * @param tags may be null, an empty sequence containing only start and end sequence tags will be returned * @return a new instance of the sequence, initialized with the parameter tags * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public static SequenceD newInstance(final Tag... tags) { final SequenceD result = new SequenceD(); result.append(START_TAG); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } return result; } /** * Create an empty $sequenceClassname. * This method is intended to avoid disambiguation for the newInstance() with variable list of blocks or tags * @return a new instance of the sequence * @since 7.7 */ public static SequenceD newInstance() { final SequenceD result = new SequenceD(); result.append(START_TAG); return result; } /** * Create a new instance of $sequenceClassname and add the contents of all sequences given inside. * Mainly intended to create a sequence by adding subsequences * @param sequences a list of blocks to set as the new sequence content * @return a new instance of the sequence, initialized with the parameter sequences content * @since 7.7 */ public static SequenceD newInstance(final SwiftTagListBlock... sequences) { final SequenceD result = new SequenceD(); result.append(START_TAG); if (sequences != null && sequences.length > 0) { for (final SwiftTagListBlock s : sequences) { result.addTags(s.getTags()); } } return result; } } /** * 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. * * @since 7.7 * @return a new sequence that may be empty, never returns null */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceD getSequenceD() { return getSequenceD(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * 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. * * @param parentSequence a not null parent sequence to find SequenceD within it * @return the found sequence or an empty sequence if none is found, never returns null * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceD getSequenceD(SwiftTagListBlock parentSequence) { final java.util.Map map = SwiftMessageUtils.splitByField15(parentSequence); if (map.containsKey("D")) { return new SequenceD(map.get("D")); } return new SequenceD(); } /** * Class to model Sequence "E" in MT 304. */ @SequenceStyle(Type.SPLIT_BY_15) public static class SequenceE extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceE() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceE(final SwiftTagListBlock content) { super(content.getTags()); } public static final Tag START_TAG = Field15E.emptyTag(); /** * Creates a new instance of this sequence with the given tags inside. * @param tags may be null, an empty sequence containing only start and end sequence tags will be returned * @return a new instance of the sequence, initialized with the parameter tags * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public static SequenceE newInstance(final Tag... tags) { final SequenceE result = new SequenceE(); result.append(START_TAG); if (tags != null && tags.length > 0) { for (final Tag t : tags) { result.append(t); } } return result; } /** * Create an empty $sequenceClassname. * This method is intended to avoid disambiguation for the newInstance() with variable list of blocks or tags * @return a new instance of the sequence * @since 7.7 */ public static SequenceE newInstance() { final SequenceE result = new SequenceE(); result.append(START_TAG); return result; } /** * Create a new instance of $sequenceClassname and add the contents of all sequences given inside. * Mainly intended to create a sequence by adding subsequences * @param sequences a list of blocks to set as the new sequence content * @return a new instance of the sequence, initialized with the parameter sequences content * @since 7.7 */ public static SequenceE newInstance(final SwiftTagListBlock... sequences) { final SequenceE result = new SequenceE(); result.append(START_TAG); if (sequences != null && sequences.length > 0) { for (final SwiftTagListBlock s : sequences) { result.addTags(s.getTags()); } } return result; } } /** * 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. * * @since 7.7 * @return a new sequence that may be empty, never returns null */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceE getSequenceE() { return getSequenceE(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * 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. * * @param parentSequence a not null parent sequence to find SequenceE within it * @return the found sequence or an empty sequence if none is found, never returns null * @since 7.7 */ @SequenceStyle(Type.SPLIT_BY_15) public SequenceE getSequenceE(SwiftTagListBlock parentSequence) { final java.util.Map map = SwiftMessageUtils.splitByField15(parentSequence); if (map.containsKey("E")) { return new SequenceE(map.get("E")); } return new SequenceE(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy