
com.prowidesoftware.swift.model.field.Field50G Maven / Gradle / Ivy
The newest version!
/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
*/
package com.prowidesoftware.swift.model.field;
import java.io.Serializable;
import java.util.List;
import java.util.ArrayList;
import com.prowidesoftware.swift.model.BIC;
import org.apache.commons.lang.StringUtils;
import com.prowidesoftware.swift.model.field.PatternContainer;
import com.prowidesoftware.swift.model.*;
import com.prowidesoftware.swift.utils.SwiftFormatUtils;
/**
* Field 50G
*
* validation pattern: /34x$|
* parser pattern: /S$S
* components pattern: SB
*
* Components Data types
*
* - component1:
String
* - component2:
BIC
*
*
* NOTE: this source code has been generated.
*
* @author www.prowidesoftware.com
*/
@SuppressWarnings("unused")
public class Field50G extends Field implements Serializable, PatternContainer, BICContainer {
private static final long serialVersionUID = 1L;
public static final String NAME = "50G";
public static final String PARSER_PATTERN ="/S$S";
public static final String COMPONENTS_PATTERN = "SB";
/**
* Default constructor
*/
public Field50G() {
super(2);
}
/**
* Creates the field parsing the parameter value into fields' components
* @param value
*/
public Field50G(String value) {
this();
java.util.List lines = SwiftParseUtils.getLines(value);
if (lines.size() > 0) {
setComponent1(SwiftParseUtils.getTokenFirst(lines.get(0), "/", null));
}
if (lines.size() > 1) {
setComponent2(lines.get(1));
}
}
/**
* Serializes the fields' components into the single string value (SWIFT format)
*/
@Override
public String getValue() {
final StringBuilder result = new StringBuilder();
result.append("/");
result.append(StringUtils.trimToEmpty(getComponent1()));
if (StringUtils.isNotEmpty(getComponent2())) {
result.append(com.prowidesoftware.swift.io.writer.FINWriterVisitor.SWIFT_EOL);
result.append(getComponent2());
}
return result.toString();
}
/**
* Get the component1
* @return the component1
*/
public String getComponent1() {
return getComponent(1);
}
/**
* Get the Account (component1).
* @return the Account from component1
*/
public String getAccount() {
return getComponent(1);
}
/**
* Set the component1.
* @param component1 the component1 to set
*/
public void setComponent1(String component1) {
setComponent(1, component1);
}
/**
* Set the Account (component1).
* @param component1 the Account to set
*/
public void setAccount(String component1) {
setComponent(1, component1);
}
/**
* Get the component2
* @return the component2
*/
public String getComponent2() {
return getComponent(2);
}
/**
* Get the component2 as BIC
* @return the component2 converted to BIC or null
if cannot be converted
*/
public com.prowidesoftware.swift.model.BIC getComponent2AsBIC() {
return SwiftFormatUtils.getBIC(getComponent(2));
}
/**
* Get the BIC (component2).
* @return the BIC from component2
*/
public String getBIC() {
return getComponent(2);
}
/**
* Get the BIC (component2) as BIC
* @return the BIC from component2 converted to BIC or null
if cannot be converted
*/
public com.prowidesoftware.swift.model.BIC getBICAsBIC() {
return SwiftFormatUtils.getBIC(getComponent(2));
}
/**
* Set the component2.
* @param component2 the component2 to set
*/
public void setComponent2(String component2) {
setComponent(2, component2);
}
/**
* Set the component2.
* @param BIC with the component2 content to set
*/
public void setComponent2(com.prowidesoftware.swift.model.BIC component2) {
setComponent(2, SwiftFormatUtils.getBIC(component2));
}
/**
* Set the BIC (component2).
* @param component2 the BIC to set
*/
public void setBIC(String component2) {
setComponent(2, component2);
}
/**
* Set the BIC (component2) as BIC
* @param BIC with the BIC content to set
*/
public void setBIC(com.prowidesoftware.swift.model.BIC component2) {
setComponent(2, SwiftFormatUtils.getBIC(component2));
}
public List bics () {
final List result = new ArrayList();
result.add(SwiftFormatUtils.getBIC(getComponent(2)));
return result;
}
public List bicStrings () {
final List result = new ArrayList();
result.add(getComponent(2));
return result;
}
/**
* 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;
}
public String componentsPattern() {
return COMPONENTS_PATTERN;
}
public String parserPattern() {
return PARSER_PATTERN;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy