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

com.prowidesoftware.swift.model.mt.mt3xx.MT305 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 305 - Foreign Currency Option Confirmation.
 *
 * 

* SWIFT MT305 (ISO 15022) message structure: *

  • Sequence A (M)
    • Field 15 A (M)
    • Field 20 (M)
    • Field 21 (M)
    • Field 22 (M)
    • Field 23 (M)
    • Field 94 A (O)
    • Field 82 A,J (M)
    • Field 87 A,J (M)
    • Field 83 A,J (O)
    • Field 30 (M)
    • Field 31 C (O)
    • Field 31 G (M)
    • Field 31 E (M)
    • Field 26 F (M)
    • Field 39 M (O)
    • Field 17 F (O)
    • Field 14 S (O) (repetitive)
    • Field 32 E (O)
    • Field 35 C (O)
    • Field 26 K (O)
    • Field 32 B (M)
    • Field 36 (M)
    • Field 33 B (M)
    • Field 37 K (M)
    • Field 34 P,R (M)
    • Field 53 A,J (O)
    • Field 56 A,J (O)
    • Field 57 A,J (M)
    • Field 77 H (O)
    • Field 14 C (O)
    • Field 72 (O)
  • Sequence B (O)
    • Field 15 B (M)
    • Sequence B1 (O) (repetitive)
      • Field 22 L (M)
      • Field 91 A,D,J (O)
      • Sequence B1a (O) (repetitive)
        • Field 22 M (M)
        • Field 22 N (M)
        • Sequence B1a1 (O) (repetitive)
          • Field 22 P (M)
          • Field 22 R (M)
    • Field 81 A,D,J (O)
    • Field 89 A,D,J (O)
    • 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 77 A (O)
* *

* This source code is specific to release SRU 2023 *

* For additional resources check https://www.prowidesoftware.com/resources */ @Generated public class MT305 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(MT305.class.getName()); /** * Constant for MT name, this is part of the classname, after MT. */ public static final String NAME = "305"; /** * Creates an MT305 initialized with the parameter SwiftMessage. * @param m swift message with the MT305 content */ public MT305(final SwiftMessage m) { super(m); sanityCheck(m); } /** * Creates an MT305 initialized with the parameter MtSwiftMessage. * @param m swift message with the MT305 content, the parameter can not be null * @see #MT305(String) */ public MT305(final MtSwiftMessage m) { this(m.message()); } /** * Creates an MT305 initialized with the parameter MtSwiftMessage. * * @param m swift message with the MT305 content * @return the created object or null if the parameter is null * @see #MT305(String) * @since 7.7 */ public static MT305 parse(final MtSwiftMessage m) { if (m == null) { return null; } return new MT305(m); } /** * Creates and initializes a new MT305 input message setting TEST BICS as sender and receiver. * All mandatory header attributes are completed with default values. * * @since 7.6 */ public MT305() { this(BIC.TEST8, BIC.TEST8); } /** * Creates and initializes a new MT305 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 MT305(final String sender, final String receiver) { super(305, sender, receiver); } /** * Creates a new MT305 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 MT305(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 MT305 object from FIN content with a Service Message. Check if the MT305 you are intended to read is prepended with and ACK."); } else if (!StringUtils.equals(param.getType(), "305")) { log.warning("Creating an MT305 object from FIN content with message type "+param.getType()); } } /** * Creates a new MT305 by parsing a String with the message content in its swift FIN format. * If the fin parameter cannot be parsed, the returned MT305 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 MT305 or null if fin is null * @since 7.7 */ public static MT305 parse(final String fin) { if (fin == null) { return null; } return new MT305(fin); } /** * Creates a new MT305 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 MT305(final InputStream stream) throws IOException { this(Lib.readStream(stream)); } /** * Creates a new MT305 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 MT305 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 MT305 parse(final InputStream stream) throws IOException { if (stream == null) { return null; } return new MT305(stream); } /** * Creates a new MT305 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 MT305(final File file) throws IOException { this(Lib.readFile(file)); } /** * Creates a new MT305 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 MT305 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 MT305 parse(final File file) throws IOException { if (file == null) { return null; } return new MT305(file); } /** * Returns this MT number. * @return the message type number of this MT * @since 6.4 */ @Override public String getMessageType() { return "305"; } /** * 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 MT305 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 MT305 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 MT305 append(final Field... fields) { super.append(fields); return this; } /** * Creates an MT305 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 MT305 message * @return a new instance of MT305 * @since 7.10.3 */ public static MT305 fromJson(final String json) { return (MT305) 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 MT305 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 MT305 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 MT305 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 MT305 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 23, * or null if none is found. * The first occurrence of field 23 at MT305 is expected to be the only one. * * @return a Field23 object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field23 getField23() { final Tag t = tag("23"); if (t != null) { return new Field23(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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 31C, * or null if none is found. * The first occurrence of field 31C at MT305 is expected to be the only one. * * @return a Field31C object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field31C getField31C() { final Tag t = tag("31C"); if (t != null) { return new Field31C(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 31G, * or null if none is found. * The first occurrence of field 31G at MT305 is expected to be the only one. * * @return a Field31G object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field31G getField31G() { final Tag t = tag("31G"); if (t != null) { return new Field31G(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 31E, * or null if none is found. * The first occurrence of field 31E at MT305 is expected to be the only one. * * @return a Field31E object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field31E getField31E() { final Tag t = tag("31E"); if (t != null) { return new Field31E(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 26F, * or null if none is found. * The first occurrence of field 26F at MT305 is expected to be the only one. * * @return a Field26F object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field26F getField26F() { final Tag t = tag("26F"); if (t != null) { return new Field26F(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 MT305 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 17F, * or null if none is found. * The first occurrence of field 17F at MT305 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 32E, * or null if none is found. * The first occurrence of field 32E at MT305 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 35C, * or null if none is found. * The first occurrence of field 35C at MT305 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 26K, * or null if none is found. * The first occurrence of field 26K at MT305 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 32B, * or null if none is found. * The first occurrence of field 32B at MT305 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 36, * or null if none is found. * The first occurrence of field 36 at MT305 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 33B, * or null if none is found. * The first occurrence of field 33B at MT305 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 37K, * or null if none is found. * The first occurrence of field 37K at MT305 is expected to be the only one. * * @return a Field37K object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field37K getField37K() { final Tag t = tag("37K"); if (t != null) { return new Field37K(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 MT305 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 34R, * or null if none is found. * The first occurrence of field 34R at MT305 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 53A, * or null if none is found. * The first occurrence of field 53A at MT305 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 MT305 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 56A, * or null if none is found. * The first occurrence of field 56A at MT305 is expected to be the only one. * * @return a Field56A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field56A getField56A() { final Tag t = tag("56A"); if (t != null) { return new Field56A(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 56J, * or null if none is found. * The first occurrence of field 56J at MT305 is expected to be the only one. * * @return a Field56J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field56J getField56J() { final Tag t = tag("56J"); if (t != null) { return new Field56J(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 57A, * or null if none is found. * The first occurrence of field 57A at MT305 is expected to be the only one. * * @return a Field57A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field57A getField57A() { final Tag t = tag("57A"); if (t != null) { return new Field57A(t.getValue()); } else { return null; } } /** * Iterates through block4 fields and return the first one whose name matches 57J, * or null if none is found. * The first occurrence of field 57J at MT305 is expected to be the only one. * * @return a Field57J object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field57J getField57J() { final Tag t = tag("57J"); if (t != null) { return new Field57J(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 MT305 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 MT305 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 MT305 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 MT305 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 81A, * or null if none is found. * The first occurrence of field 81A at MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 96A, * or null if none is found. * The first occurrence of field 96A at MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 77A, * or null if none is found. * The first occurrence of field 77A at MT305 is expected to be the only one. * * @return a Field77A object or null if the field is not found * @see SwiftTagListBlock#getTagByName(String) * @throws IllegalStateException if SwiftMessage object is not initialized */ public Field77A getField77A() { final Tag t = tag("77A"); if (t != null) { return new Field77A(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 MT305 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 22L, * or Collections.emptyList() if none is found. * Multiple occurrences of field 22L at MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 MT305 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 305. */ @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 305. */ @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 305. */ 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()); } /** * 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 "B1a" in MT 305. */ public static class SequenceB1a extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceB1a() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceB1a(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 SequenceB1a 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 SequenceB1a newInstance(final int start, final int end, final Tag... tags) { final SequenceB1a result = new SequenceB1a(); 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 SequenceB1a 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 getSequenceB1aList() { return getSequenceB1aList(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the list of SequenceB1a 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 SequenceB1a 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 getSequenceB1aList(final SwiftTagListBlock parentSequence) { if (parentSequence != null) { final List blocks = parentSequence.getSubBlocksDelimitedWithOptionalTail(SequenceB1a.START, SequenceB1a.END, SequenceB1a.TAIL); if (blocks != null && !blocks.isEmpty()) { final List result = new ArrayList<>(blocks.size()); for (final SwiftTagListBlock b : blocks) { result.add(new SequenceB1a(b)); } return result; } } return Collections.emptyList(); } /** * Class to model Sequence "B1a1" in MT 305. */ public static class SequenceB1a1 extends SwiftTagListBlock { private static final long serialVersionUID = 1L; /** * Constructs an empty sequence. */ private SequenceB1a1() { super(new ArrayList<>()); } /** * Creates a sequence with the given content. * @see SwiftTagListBlock */ private SequenceB1a1(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 SequenceB1a1 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 SequenceB1a1 newInstance(final int start, final int end, final Tag... tags) { final SequenceB1a1 result = new SequenceB1a1(); 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 SequenceB1a1 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 getSequenceB1a1List() { return getSequenceB1a1List(super.getSwiftMessageNotNullOrException().getBlock4()); } /** * Get the list of SequenceB1a1 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 SequenceB1a1 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 getSequenceB1a1List(final SwiftTagListBlock parentSequence) { if (parentSequence != null) { final List blocks = parentSequence.getSubBlocksDelimitedWithOptionalTail(SequenceB1a1.START, SequenceB1a1.END, SequenceB1a1.TAIL); if (blocks != null && !blocks.isEmpty()) { final List result = new ArrayList<>(blocks.size()); for (final SwiftTagListBlock b : blocks) { result.add(new SequenceB1a1(b)); } return result; } } return Collections.emptyList(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy