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

com.prowidesoftware.swift.model.mt.mt6xx.MT600 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.mt6xx;



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 600 - Commodity Trade Confirmation.
 *
 * 

* SWIFT MT600 (ISO 15022) message structure: *

  • Sequence A (M)
    • Field 15 A (M)
    • Field 20 (M)
    • Field 21 (M)
    • Field 22 (M)
    • Field 94 A (O)
    • Field 82 A,J (M)
    • Field 87 A,J (M)
    • Field 83 A,J (O)
    • Field 30 (M)
    • Field 26 C (M)
    • Field 26 H (O)
    • Field 33 G (M)
    • Field 71 C (O)
    • Field 77 H (M)
    • Field 77 D (O)
    • Field 14 C (O)
    • Field 72 (O)
  • Sequence B (O)
    • Field 15 B (M)
    • Field 32 F (M)
    • Field 86 A,B,D (O)
    • Field 87 A,B,D (M)
    • Field 34 P (M)
    • Field 53 A,J (O)
    • Field 56 A,J (O)
    • Field 57 A,J (M)
  • Sequence C (O)
    • Field 15 C (M)
    • Field 32 F (M)
    • Field 86 A,B,D (O)
    • Field 87 A,B,D (M)
    • Field 34 R (M)
    • Field 56 A,J (O)
    • Field 57 A,J (M)
  • Sequence D (O)
    • Field 15 D (M)
    • Sequence D1 (O) (repetitive)
      • Field 22 L (M)
      • Field 91 A,D,J (O)
      • Sequence D1a (O) (repetitive)
        • Field 22 M (M)
        • Field 22 N (M)
        • Sequence D1a1 (O) (repetitive)
          • Field 22 P (M)
          • Field 22 R (M)
    • Field 96 A,D,J (O)
    • Field 22 S (O) (repetitive)
    • Field 22 T (O)
    • Field 17 E (O)
    • Field 22 U (O)
    • Field 35 B (O)
    • Field 17 H (O)
    • Field 17 P (O)
    • Field 22 V (O)
    • Field 98 D (O)
    • Field 17 W (O)
    • Field 17 Y (O)
    • Field 17 Z (O)
    • Field 22 Q (O)
    • Field 17 L (O)
    • Field 17 M (O)
    • Field 17 Q (O)
    • Field 17 S (O)
    • Field 17 X (O)
    • Field 34 C (O) (repetitive)
    • Field 17 A (O)
* *

* This source code is specific to release SRU 2023 *

* For additional resources check https://www.prowidesoftware.com/resources */ @Generated public class MT600 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(MT600.class.getName()); /** * Constant for MT name, this is part of the classname, after MT. */ public static final String NAME = "600"; /** * Creates an MT600 initialized with the parameter SwiftMessage. * @param m swift message with the MT600 content */ public MT600(final SwiftMessage m) { super(m); sanityCheck(m); } /** * Creates an MT600 initialized with the parameter MtSwiftMessage. * @param m swift message with the MT600 content, the parameter can not be null * @see #MT600(String) */ public MT600(final MtSwiftMessage m) { this(m.message()); } /** * Creates an MT600 initialized with the parameter MtSwiftMessage. * * @param m swift message with the MT600 content * @return the created object or null if the parameter is null * @see #MT600(String) * @since 7.7 */ public static MT600 parse(final MtSwiftMessage m) { if (m == null) { return null; } return new MT600(m); } /** * Creates and initializes a new MT600 input message setting TEST BICS as sender and receiver. * All mandatory header attributes are completed with default values. * * @since 7.6 */ public MT600() { this(BIC.TEST8, BIC.TEST8); } /** * Creates and initializes a new MT600 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 MT600(final String sender, final String receiver) { super(600, sender, receiver); } /** * Creates a new MT600 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 MT600(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 MT600 object from FIN content with a Service Message. Check if the MT600 you are intended to read is prepended with and ACK."); } else if (!StringUtils.equals(param.getType(), "600")) { log.warning("Creating an MT600 object from FIN content with message type "+param.getType()); } } /** * Creates a new MT600 by parsing a String with the message content in its swift FIN format. * If the fin parameter cannot be parsed, the returned MT600 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 MT600 or null if fin is null * @since 7.7 */ public static MT600 parse(final String fin) { if (fin == null) { return null; } return new MT600(fin); } /** * Creates a new MT600 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 MT600(final InputStream stream) throws IOException { this(Lib.readStream(stream)); } /** * Creates a new MT600 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 MT600 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 MT600 parse(final InputStream stream) throws IOException { if (stream == null) { return null; } return new MT600(stream); } /** * Creates a new MT600 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 MT600(final File file) throws IOException { this(Lib.readFile(file)); } /** * Creates a new MT600 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 MT600 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 MT600 parse(final File file) throws IOException { if (file == null) { return null; } return new MT600(file); } /** * Returns this MT number. * @return the message type number of this MT * @since 6.4 */ @Override public String getMessageType() { return "600"; } /** * 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 MT600 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 MT600 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 MT600 append(final Field... fields) { super.append(fields); return this; } /** * Creates an MT600 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 MT600 message * @return a new instance of MT600 * @since 7.10.3 */ public static MT600 fromJson(final String json) { return (MT600) 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 MT600 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 MT600 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 MT600 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 22, * or null if none is found. * The first occurrence of field 22 at MT600 is expected to be the only one. * * @return a Field22 object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field22 getField22() { final Tag t = tag("22"); if (t != null) { return new Field22(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 MT600 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 82A, * or null if none is found. * The first occurrence of field 82A at MT600 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 MT600 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 87J, * or null if none is found. * The first occurrence of field 87J at MT600 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 83A, * or null if none is found. * The first occurrence of field 83A at MT600 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 MT600 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 30, * or null if none is found. * The first occurrence of field 30 at MT600 is expected to be the only one. * * @return a Field30 object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field30 getField30() { final Tag t = tag("30"); if (t != null) { return new Field30(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 26C, * or null if none is found. * The first occurrence of field 26C at MT600 is expected to be the only one. * * @return a Field26C object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field26C getField26C() { final Tag t = tag("26C"); if (t != null) { return new Field26C(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 26H, * or null if none is found. * The first occurrence of field 26H at MT600 is expected to be the only one. * * @return a Field26H object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field26H getField26H() { final Tag t = tag("26H"); if (t != null) { return new Field26H(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 33G, * or null if none is found. * The first occurrence of field 33G at MT600 is expected to be the only one. * * @return a Field33G object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field33G getField33G() { final Tag t = tag("33G"); if (t != null) { return new Field33G(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 71C, * or null if none is found. * The first occurrence of field 71C at MT600 is expected to be the only one. * * @return a Field71C object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field71C getField71C() { final Tag t = tag("71C"); if (t != null) { return new Field71C(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 MT600 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 77D, * or null if none is found. * The first occurrence of field 77D at MT600 is expected to be the only one. * * @return a Field77D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field77D getField77D() { final Tag t = tag("77D"); if (t != null) { return new Field77D(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 MT600 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 72, * or null if none is found. * The first occurrence of field 72 at MT600 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 15B, * or null if none is found. * The first occurrence of field 15B at MT600 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 34P, * or null if none is found. * The first occurrence of field 34P at MT600 is expected to be the only one. * * @return a Field34P object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field34P getField34P() { final Tag t = tag("34P"); if (t != null) { return new Field34P(t.getValue()); } else { return null; } } /** * 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 MT600 is expected to be the only one. * * @return a Field53A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field53A getField53A() { final Tag t = tag("53A"); if (t != null) { return new Field53A(t.getValue()); } else { return null; } } /** * 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 MT600 is expected to be the only one. * * @return a Field53J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field53J getField53J() { final Tag t = tag("53J"); if (t != null) { return new Field53J(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 MT600 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 34R, * or null if none is found. * The first occurrence of field 34R at MT600 is expected to be the only one. * * @return a Field34R object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field34R getField34R() { final Tag t = tag("34R"); if (t != null) { return new Field34R(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 MT600 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 96A, * or null if none is found. * The first occurrence of field 96A at MT600 is expected to be the only one. * * @return a Field96A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field96A getField96A() { final Tag t = tag("96A"); if (t != null) { return new Field96A(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 96D, * or null if none is found. * The first occurrence of field 96D at MT600 is expected to be the only one. * * @return a Field96D object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field96D getField96D() { final Tag t = tag("96D"); if (t != null) { return new Field96D(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 96J, * or null if none is found. * The first occurrence of field 96J at MT600 is expected to be the only one. * * @return a Field96J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field96J getField96J() { final Tag t = tag("96J"); if (t != null) { return new Field96J(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 22T, * or null if none is found. * The first occurrence of field 22T at MT600 is expected to be the only one. * * @return a Field22T object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field22T getField22T() { final Tag t = tag("22T"); if (t != null) { return new Field22T(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17E, * or null if none is found. * The first occurrence of field 17E at MT600 is expected to be the only one. * * @return a Field17E object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17E getField17E() { final Tag t = tag("17E"); if (t != null) { return new Field17E(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 MT600 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 MT600 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 17H, * or null if none is found. * The first occurrence of field 17H at MT600 is expected to be the only one. * * @return a Field17H object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17H getField17H() { final Tag t = tag("17H"); if (t != null) { return new Field17H(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17P, * or null if none is found. * The first occurrence of field 17P at MT600 is expected to be the only one. * * @return a Field17P object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17P getField17P() { final Tag t = tag("17P"); if (t != null) { return new Field17P(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 MT600 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 MT600 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 17W, * or null if none is found. * The first occurrence of field 17W at MT600 is expected to be the only one. * * @return a Field17W object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17W getField17W() { final Tag t = tag("17W"); if (t != null) { return new Field17W(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17Y, * or null if none is found. * The first occurrence of field 17Y at MT600 is expected to be the only one. * * @return a Field17Y object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17Y getField17Y() { final Tag t = tag("17Y"); if (t != null) { return new Field17Y(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17Z, * or null if none is found. * The first occurrence of field 17Z at MT600 is expected to be the only one. * * @return a Field17Z object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17Z getField17Z() { final Tag t = tag("17Z"); if (t != null) { return new Field17Z(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 22Q, * or null if none is found. * The first occurrence of field 22Q at MT600 is expected to be the only one. * * @return a Field22Q object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field22Q getField22Q() { final Tag t = tag("22Q"); if (t != null) { return new Field22Q(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17L, * or null if none is found. * The first occurrence of field 17L at MT600 is expected to be the only one. * * @return a Field17L object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17L getField17L() { final Tag t = tag("17L"); if (t != null) { return new Field17L(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17M, * or null if none is found. * The first occurrence of field 17M at MT600 is expected to be the only one. * * @return a Field17M object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17M getField17M() { final Tag t = tag("17M"); if (t != null) { return new Field17M(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17Q, * or null if none is found. * The first occurrence of field 17Q at MT600 is expected to be the only one. * * @return a Field17Q object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17Q getField17Q() { final Tag t = tag("17Q"); if (t != null) { return new Field17Q(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17S, * or null if none is found. * The first occurrence of field 17S at MT600 is expected to be the only one. * * @return a Field17S object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17S getField17S() { final Tag t = tag("17S"); if (t != null) { return new Field17S(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17X, * or null if none is found. * The first occurrence of field 17X at MT600 is expected to be the only one. * * @return a Field17X object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17X getField17X() { final Tag t = tag("17X"); if (t != null) { return new Field17X(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 17A, * or null if none is found. * The first occurrence of field 17A at MT600 is expected to be the only one. * * @return a Field17A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field17A getField17A() { final Tag t = tag("17A"); if (t != null) { return new Field17A(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 87A, * or Collections.emptyList() if none is found. * Multiple occurrences of field 87A at MT600 are expected at one sequence or across several sequences. * * @return a List of Field87A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField87A() { final List result = new ArrayList<>(); final Tag[] tags = tags("87A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field87A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 32F, * or Collections.emptyList() if none is found. * Multiple occurrences of field 32F at MT600 are expected at one sequence or across several sequences. * * @return a List of Field32F objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField32F() { final List result = new ArrayList<>(); final Tag[] tags = tags("32F"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field32F(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 86A, * or Collections.emptyList() if none is found. * Multiple occurrences of field 86A at MT600 are expected at one sequence or across several sequences. * * @return a List of Field86A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField86A() { final List result = new ArrayList<>(); final Tag[] tags = tags("86A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field86A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 86B, * or Collections.emptyList() if none is found. * Multiple occurrences of field 86B at MT600 are expected at one sequence or across several sequences. * * @return a List of Field86B objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField86B() { final List result = new ArrayList<>(); final Tag[] tags = tags("86B"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field86B(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 86D, * or Collections.emptyList() if none is found. * Multiple occurrences of field 86D at MT600 are expected at one sequence or across several sequences. * * @return a List of Field86D objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField86D() { final List result = new ArrayList<>(); final Tag[] tags = tags("86D"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field86D(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 87B, * or Collections.emptyList() if none is found. * Multiple occurrences of field 87B at MT600 are expected at one sequence or across several sequences. * * @return a List of Field87B objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField87B() { final List result = new ArrayList<>(); final Tag[] tags = tags("87B"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field87B(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 87D, * or Collections.emptyList() if none is found. * Multiple occurrences of field 87D at MT600 are expected at one sequence or across several sequences. * * @return a List of Field87D objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField87D() { final List result = new ArrayList<>(); final Tag[] tags = tags("87D"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field87D(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 MT600 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 MT600 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 MT600 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 MT600 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 22L, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22L at MT600 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 91A, * or Collections.emptyList() if none is found. * Multiple occurrences of field 91A at MT600 are expected at one sequence or across several sequences. * * @return a List of Field91A objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField91A() { final List result = new ArrayList<>(); final Tag[] tags = tags("91A"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field91A(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 91D, * or Collections.emptyList() if none is found. * Multiple occurrences of field 91D at MT600 are expected at one sequence or across several sequences. * * @return a List of Field91D objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField91D() { final List result = new ArrayList<>(); final Tag[] tags = tags("91D"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field91D(tag.getValue())); } } return result; } /** * Iterates through block4 fields and return all occurrences of fields whose names matches 91J, * or Collections.emptyList() if none is found. * Multiple occurrences of field 91J at MT600 are expected at one sequence or across several sequences. * * @return a List of Field91J objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField91J() { final List result = new ArrayList<>(); final Tag[] tags = tags("91J"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field91J(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 MT600 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 MT600 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 MT600 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 MT600 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 22S, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22S at MT600 are expected at one sequence or across several sequences. * * @return a List of Field22S objects or Collections.emptyList() if none is not found * @see SwiftTagListBlock#getTagsByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public List getField22S() { final List result = new ArrayList<>(); final Tag[] tags = tags("22S"); if (tags != null && tags.length > 0) { for (Tag tag : tags) { result.add(new Field22S(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 MT600 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; } /** * Class to model Sequence "A" in MT 600. */ @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 600. */ @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 "C" in MT 600. */ @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 "D" in MT 600. */ @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 "D1" in MT 600. */ public static class SequenceD1 extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceD1() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceD1(final SwiftTagListBlock content) { super(content.getTags()); } /** * The name of the first tag in the sequence which must be mandatory. * May be null if we cannot determine this safely */ public static final String START_NAME = "22L" ; } /** * Class to model Sequence "D1a" in MT 600. */ public static class SequenceD1a extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceD1a() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceD1a(final SwiftTagListBlock content) { super(content.getTags()); } /** * First mandatory tag name of the sequence: "22M" . * Array format is for cases when more than one letter options is allowed */ public static final String[] START = { "22M" } ; /** * 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 SequenceD1a 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 SequenceD1a newInstance(final int start, final int end, final Tag... tags) { final SequenceD1a result = new SequenceD1a(); 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 SequenceD1a 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 getSequenceD1aList() { return getSequenceD1aList(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the list of SequenceD1a 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 SequenceD1a 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 getSequenceD1aList(final SwiftTagListBlock parentSequence) { if (parentSequence != null) { final List blocks = parentSequence.getSubBlocksDelimitedWithOptionalTail(SequenceD1a.START, SequenceD1a.END, SequenceD1a.TAIL); if (blocks != null && !blocks.isEmpty()) { final List result = new ArrayList<>(blocks.size()); for (final SwiftTagListBlock b : blocks) { result.add(new SequenceD1a(b)); } return result; } } return Collections.emptyList(); } /** * Class to model Sequence "D1a1" in MT 600. */ public static class SequenceD1a1 extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceD1a1() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceD1a1(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 SequenceD1a1 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 SequenceD1a1 newInstance(final int start, final int end, final Tag... tags) { final SequenceD1a1 result = new SequenceD1a1(); 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 SequenceD1a1 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 getSequenceD1a1List() { return getSequenceD1a1List(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the list of SequenceD1a1 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 SequenceD1a1 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 getSequenceD1a1List(final SwiftTagListBlock parentSequence) { if (parentSequence != null) { final List blocks = parentSequence.getSubBlocksDelimitedWithOptionalTail(SequenceD1a1.START, SequenceD1a1.END, SequenceD1a1.TAIL); if (blocks != null && !blocks.isEmpty()) { final List result = new ArrayList<>(blocks.size()); for (final SwiftTagListBlock b : blocks) { result.add(new SequenceD1a1(b)); } return result; } } return Collections.emptyList(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy