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

com.prowidesoftware.swift.model.field.Field422 Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2006-2024 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.field;

import com.prowidesoftware.swift.model.Tag;
import com.prowidesoftware.Generated;
import com.prowidesoftware.deprecation.ProwideDeprecated;
import com.prowidesoftware.deprecation.TargetYear;

import java.io.Serializable;
import java.util.Locale;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;



import com.prowidesoftware.swift.model.*;
import com.prowidesoftware.swift.utils.SwiftFormatUtils;
import org.apache.commons.lang3.StringUtils;

import com.google.gson.JsonObject;
import com.google.gson.JsonParser;

/**
 * SWIFT MT Field 422.
 * 

* Model and parser for field 422 of a SWIFT MT message. * *

Subfields (components) Data types *

    *
  1. Component 1: Character
  2. *
  3. Component 2: String
  4. *
  5. Component 3: Character
  6. *
  7. Component 4: String
  8. *
  9. Component 5: Character
  10. *
  11. Component 6: String
  12. *
  13. Component 7: Character
  14. *
  15. Component 8: String
  16. *
  17. Component 9: Character
  18. *
  19. Component 10: String
  20. *
  21. Component 11: Character
  22. *
  23. Component 12: String
  24. *
  25. Component 13: Character
  26. *
  27. Component 14: String
  28. *
  29. Component 15: Character
  30. *
  31. Component 16: String
  32. *
  33. Component 17: Character
  34. *
  35. Component 18: String
  36. *
  37. Component 19: Character
  38. *
  39. Component 20: String
  40. *
  41. Component 21: Character
  42. *
  43. Component 22: String
  44. *
  45. Component 23: Character
  46. *
  47. Component 24: String
  48. *
* *

Structure definition *

    *
  • validation pattern: 12*(1!c/38x)
  • *
  • parser pattern: 12*(S/S)
  • *
  • components pattern: cScScScScScScScScScScScS
  • *
* *

* This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated public class Field422 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** * Constant with the field name 422. */ public static final String NAME = "422"; /** * Same as NAME, intended to be clear when using static imports. */ public static final String F_422 = "422"; /** * Default constructor. Creates a new field setting all components to null. */ public Field422() { super(24); } /** * Creates a new field and initializes its components with content from the parameter value. * @param value complete field value including separators and CRLF */ public Field422(final String value) { super(value); } /** * Creates a new field and initializes its components with content from the parameter tag. * The value is parsed with {@link #parse(String)} * @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name * @since 7.8 */ public Field422(final Tag tag) { this(); if (tag == null) { throw new IllegalArgumentException("tag cannot be null."); } if (!StringUtils.equals(tag.getName(), "422")) { throw new IllegalArgumentException("cannot create field 422 from tag "+tag.getName()+", tagname must match the name of the field."); } parse(tag.getValue()); } /** * Copy constructor. * Initializes the components list with a deep copy of the source components list. * @param source a field instance to copy * @since 7.7 */ public static Field422 newInstance(Field422 source) { Field422 cp = new Field422(); cp.setComponents(new ArrayList<>(source.getComponents())); return cp; } /** * Create a Tag with this field name and the given value. * Shorthand for new Tag(NAME, value) * @see #NAME * @since 7.5 */ public static Tag tag(final String value) { return new Tag(NAME, value); } /** * Create a Tag with this field name and an empty string as value. * Shorthand for new Tag(NAME, "") * @see #NAME * @since 7.5 */ public static Tag emptyTag() { return new Tag(NAME, ""); } /** * Parses the parameter value into the internal components structure. * *

Used to update all components from a full new value, as an alternative * to setting individual components. Previous component values are overwritten. * * @param value complete field value including separators and CRLF * @since 7.8 */ @Override public void parse(final String value) { init(24); /* * This parser implementation needs review, the actual field format is not clear in the standard: * * 422 12*(1!c/38x) This field is only for use by Market Infrastructures * which have subscribed to the Market Infrastructure Resiliency Service (MIRS). * * It is not clear how to split one instance to the other between the 12 occurrences */ if (value != null) { String[] tokens = StringUtils.split(value, "/"); final StringBuilder lastComponent = new StringBuilder(); for (int i=0; i 0) { lastComponent.append("/"); } lastComponent.append(tokens[i]); } } if (lastComponent.length() > 0) { setComponent24(lastComponent.toString()); } } } /** * Serializes the fields' components into the single string value (SWIFT format) */ @Override public String getValue() { final StringBuilder result = new StringBuilder(); //FIXME serialization 12*(S/S) // @NotImplemented return result.toString(); } /** * Returns a localized suitable for showing to humans string of a field component.
* * @param component number of the component to display * @param locale optional locale to format date and amounts, if null, the default locale is used * @return formatted component value or null if component number is invalid or not present * @throws IllegalArgumentException if component number is invalid for the field * @since 7.8 */ @Override public String getValueDisplay(int component, Locale locale) { if (component < 1 || component > 24) { throw new IllegalArgumentException("invalid component number " + component + " for field 422"); } if (component == 1) { //default format (as is) return getComponent(1); } if (component == 2) { //default format (as is) return getComponent(2); } if (component == 3) { //default format (as is) return getComponent(3); } if (component == 4) { //default format (as is) return getComponent(4); } if (component == 5) { //default format (as is) return getComponent(5); } if (component == 6) { //default format (as is) return getComponent(6); } if (component == 7) { //default format (as is) return getComponent(7); } if (component == 8) { //default format (as is) return getComponent(8); } if (component == 9) { //default format (as is) return getComponent(9); } if (component == 10) { //default format (as is) return getComponent(10); } if (component == 11) { //default format (as is) return getComponent(11); } if (component == 12) { //default format (as is) return getComponent(12); } if (component == 13) { //default format (as is) return getComponent(13); } if (component == 14) { //default format (as is) return getComponent(14); } if (component == 15) { //default format (as is) return getComponent(15); } if (component == 16) { //default format (as is) return getComponent(16); } if (component == 17) { //default format (as is) return getComponent(17); } if (component == 18) { //default format (as is) return getComponent(18); } if (component == 19) { //default format (as is) return getComponent(19); } if (component == 20) { //default format (as is) return getComponent(20); } if (component == 21) { //default format (as is) return getComponent(21); } if (component == 22) { //default format (as is) return getComponent(22); } if (component == 23) { //default format (as is) return getComponent(23); } // This is the last component, return directly without `if` //default format (as is) return getComponent(24); } /** * Returns the field component types pattern. *

* This method returns a letter representing the type for each component in the Field. It supersedes * the Components Pattern because it distinguishes between N (Number) and I (BigDecimal). * @since 9.2.7 */ @Override public String typesPattern() { return "cScScScScScScScScScScScS"; } /** * Returns the field parser pattern. */ @Override public String parserPattern() { return "12*(S/S)"; } /** * Returns the field validator pattern */ @Override public String validatorPattern() { return "12*(1!c/38x)"; } /** * Given a component number it returns true if the component is optional, * regardless of the field being mandatory in a particular message.
* Being the field's value conformed by a composition of one or several * internal component values, the field may be present in a message with * a proper value but with some of its internal components not set. * * @param component component number, first component of a field is referenced as 1 * @return true if the component is optional for this field, false otherwise */ @Override public boolean isOptional(int component) { return false; } /** * Returns true if the field is a GENERIC FIELD as specified by the standard. * @return true if the field is generic, false otherwise */ @Override public boolean isGeneric() { return false; } /** * Returns the defined amount of components.
* This is not the amount of components present in the field instance, but the total amount of components * that this field accepts as defined. * @since 7.7 */ @Override public int componentsSize() { return 24; } /** * Returns english label for components. *
* The index in the list is in sync with specific field component structure. * @see #getComponentLabel(int) * @since 7.8.4 */ @Override public List getComponentLabels() { List result = new ArrayList<>(); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); result.add(null); return result; } /** * Returns a mapping between component numbers and their label in camel case format. * @since 7.10.3 */ @Override protected Map getComponentMap() { Map result = new HashMap<>(); return result; } /** * @see Field#getLabelMap() * @since 9.3.12 */ @Override protected Map getLabelMap() { if (super.labelMap != null && !super.labelMap.isEmpty()) { // return cached map return super.labelMap; } super.labelMap = new HashMap<>(); return super.labelMap; } /** * Gets the component 1 ($label). * @return the component 1 */ public String getComponent1() { return getComponent(1); } /** * Gets the component 2 ($label). * @return the component 2 */ public String getComponent2() { return getComponent(2); } /** * Gets the component 3 ($label). * @return the component 3 */ public String getComponent3() { return getComponent(3); } /** * Gets the component 4 ($label). * @return the component 4 */ public String getComponent4() { return getComponent(4); } /** * Gets the component 5 ($label). * @return the component 5 */ public String getComponent5() { return getComponent(5); } /** * Gets the component 6 ($label). * @return the component 6 */ public String getComponent6() { return getComponent(6); } /** * Gets the component 7 ($label). * @return the component 7 */ public String getComponent7() { return getComponent(7); } /** * Gets the component 8 ($label). * @return the component 8 */ public String getComponent8() { return getComponent(8); } /** * Gets the component 9 ($label). * @return the component 9 */ public String getComponent9() { return getComponent(9); } /** * Gets the component 10 ($label). * @return the component 10 */ public String getComponent10() { return getComponent(10); } /** * Gets the component 11 ($label). * @return the component 11 */ public String getComponent11() { return getComponent(11); } /** * Gets the component 12 ($label). * @return the component 12 */ public String getComponent12() { return getComponent(12); } /** * Gets the component 13 ($label). * @return the component 13 */ public String getComponent13() { return getComponent(13); } /** * Gets the component 14 ($label). * @return the component 14 */ public String getComponent14() { return getComponent(14); } /** * Gets the component 15 ($label). * @return the component 15 */ public String getComponent15() { return getComponent(15); } /** * Gets the component 16 ($label). * @return the component 16 */ public String getComponent16() { return getComponent(16); } /** * Gets the component 17 ($label). * @return the component 17 */ public String getComponent17() { return getComponent(17); } /** * Gets the component 18 ($label). * @return the component 18 */ public String getComponent18() { return getComponent(18); } /** * Gets the component 19 ($label). * @return the component 19 */ public String getComponent19() { return getComponent(19); } /** * Gets the component 20 ($label). * @return the component 20 */ public String getComponent20() { return getComponent(20); } /** * Gets the component 21 ($label). * @return the component 21 */ public String getComponent21() { return getComponent(21); } /** * Gets the component 22 ($label). * @return the component 22 */ public String getComponent22() { return getComponent(22); } /** * Gets the component 23 ($label). * @return the component 23 */ public String getComponent23() { return getComponent(23); } /** * Gets the component 24 ($label). * @return the component 24 */ public String getComponent24() { return getComponent(24); } /** * Set the component 1 ($label). * * @param component1 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent1(String component1) { setComponent(1, component1); return this; } /** * Set the component 2 ($label). * * @param component2 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent2(String component2) { setComponent(2, component2); return this; } /** * Set the component 3 ($label). * * @param component3 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent3(String component3) { setComponent(3, component3); return this; } /** * Set the component 4 ($label). * * @param component4 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent4(String component4) { setComponent(4, component4); return this; } /** * Set the component 5 ($label). * * @param component5 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent5(String component5) { setComponent(5, component5); return this; } /** * Set the component 6 ($label). * * @param component6 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent6(String component6) { setComponent(6, component6); return this; } /** * Set the component 7 ($label). * * @param component7 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent7(String component7) { setComponent(7, component7); return this; } /** * Set the component 8 ($label). * * @param component8 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent8(String component8) { setComponent(8, component8); return this; } /** * Set the component 9 ($label). * * @param component9 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent9(String component9) { setComponent(9, component9); return this; } /** * Set the component 10 ($label). * * @param component10 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent10(String component10) { setComponent(10, component10); return this; } /** * Set the component 11 ($label). * * @param component11 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent11(String component11) { setComponent(11, component11); return this; } /** * Set the component 12 ($label). * * @param component12 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent12(String component12) { setComponent(12, component12); return this; } /** * Set the component 13 ($label). * * @param component13 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent13(String component13) { setComponent(13, component13); return this; } /** * Set the component 14 ($label). * * @param component14 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent14(String component14) { setComponent(14, component14); return this; } /** * Set the component 15 ($label). * * @param component15 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent15(String component15) { setComponent(15, component15); return this; } /** * Set the component 16 ($label). * * @param component16 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent16(String component16) { setComponent(16, component16); return this; } /** * Set the component 17 ($label). * * @param component17 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent17(String component17) { setComponent(17, component17); return this; } /** * Set the component 18 ($label). * * @param component18 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent18(String component18) { setComponent(18, component18); return this; } /** * Set the component 19 ($label). * * @param component19 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent19(String component19) { setComponent(19, component19); return this; } /** * Set the component 20 ($label). * * @param component20 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent20(String component20) { setComponent(20, component20); return this; } /** * Set the component 21 ($label). * * @param component21 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent21(String component21) { setComponent(21, component21); return this; } /** * Set the component 22 ($label). * * @param component22 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent22(String component22) { setComponent(22, component22); return this; } /** * Set the component 23 ($label). * * @param component23 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent23(String component23) { setComponent(23, component23); return this; } /** * Set the component 24 ($label). * * @param component24 the $label to set * @return the field object to enable build pattern */ public Field422 setComponent24(String component24) { setComponent(24, component24); return this; } /** * Returns the field's name composed by the field number and the letter option (if any). * @return the static value of Field422.NAME */ @Override public String getName() { return NAME; } /** * Gets the first occurrence form the tag list or null if not found. * @return null if not found o block is null or empty * @param block may be null or empty */ public static Field422 get(final SwiftTagListBlock block) { if (block == null || block.isEmpty()) { return null; } final Tag t = block.getTagByName(NAME); if (t == null) { return null; } return new Field422(t); } /** * Gets the first instance of Field422 in the given message. * @param msg may be empty or null * @return null if not found or msg is empty or null * @see #get(SwiftTagListBlock) */ public static Field422 get(final SwiftMessage msg) { if (msg == null || msg.getBlock4() == null || msg.getBlock4().isEmpty()) { return null; } return get(msg.getBlock4()); } /** * Gets a list of all occurrences of the field Field422 in the given message * an empty list is returned if none found. * @param msg may be empty or null in which case an empty list is returned * @see #getAll(SwiftTagListBlock) */ public static List getAll(final SwiftMessage msg) { if (msg == null || msg.getBlock4() == null || msg.getBlock4().isEmpty()) { return java.util.Collections.emptyList(); } return getAll(msg.getBlock4()); } /** * Gets a list of all occurrences of the field Field422 from the given block * an empty list is returned if none found. * * @param block may be empty or null in which case an empty list is returned */ public static List getAll(final SwiftTagListBlock block) { final List result = new ArrayList<>(); if (block == null || block.isEmpty()) { return result; } final Tag[] arr = block.getTagsByName(NAME); if (arr != null) { for (final Tag f : arr) { result.add(new Field422(f)); } } return result; } /** * This method deserializes the JSON data into a Field422 object. * @param json JSON structure including tuples with label and value for all field components * @return a new field instance with the JSON data parsed into field components or an empty field id the JSON is invalid * @since 7.10.3 * @see Field#fromJson(String) */ @SuppressWarnings("unused") public static Field422 fromJson(final String json) { return new Field422(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy