com.prowidesoftware.swift.model.field.Field13C Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wife Show documentation
Show all versions of wife Show documentation
Prowide Core Libraries for SWIFT (TM) messages
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 org.apache.commons.lang.StringUtils;
import com.prowidesoftware.swift.model.field.PatternContainer;
import com.prowidesoftware.swift.model.*;
import com.prowidesoftware.swift.utils.SwiftFormatUtils;
/**
* Field 13C
*
* validation pattern: /8c/
* parser pattern: /S/
* components pattern: SHGO
*
* Components Data types
*
* - component1:
String
* - component2:
Calendar
* - component3:
Character
* - component4:
Calendar
*
*
* NOTE: this source code has been generated.
*
* @author www.prowidesoftware.com
*/
@SuppressWarnings("unused")
public class Field13C extends Field implements Serializable, PatternContainer {
private static final long serialVersionUID = 1L;
public static final String NAME = "13C";
public static final String PARSER_PATTERN ="/S/";
public static final String COMPONENTS_PATTERN = "SHGO";
/**
* Default constructor
*/
public Field13C() {
super(4);
}
/**
* Creates the field parsing the parameter value into fields' components
* @param value
*/
public Field13C(String value) {
this();
setComponent1(SwiftParseUtils.getTokenFirst(value, "/", "/"));
String toparse = SwiftParseUtils.getTokenSecondLast(SwiftParseUtils.removePrefix(value, "/"), "/");
if (toparse != null) {
if (toparse.length() >= 4) {
setComponent2(org.apache.commons.lang.StringUtils.substring(toparse, 0, 4));
}
if (toparse.length() >= 5) {
setComponent3(org.apache.commons.lang.StringUtils.substring(toparse, 4, 5));
}
if (toparse.length() > 5) {
setComponent4(org.apache.commons.lang.StringUtils.substring(toparse, 5));
}
}
}
/**
* 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()));
result.append("/");
result.append(StringUtils.trimToEmpty(getComponent2()));
result.append(StringUtils.trimToEmpty(getComponent3()));
result.append(StringUtils.trimToEmpty(getComponent4()));
return result.toString();
}
/**
* Get the component1
* @return the component1
*/
public String getComponent1() {
return getComponent(1);
}
/**
* Get the Code (component1).
* @return the Code from component1
*/
public String getCode() {
return getComponent(1);
}
/**
* Set the component1.
* @param component1 the component1 to set
*/
public void setComponent1(String component1) {
setComponent(1, component1);
}
/**
* Set the Code (component1).
* @param component1 the Code to set
*/
public void setCode(String component1) {
setComponent(1, component1);
}
/**
* Get the component2
* @return the component2
*/
public String getComponent2() {
return getComponent(2);
}
/**
* Get the component2 as Calendar
* @return the component2 converted to Calendar or null
if cannot be converted
*/
public java.util.Calendar getComponent2AsCalendar() {
return SwiftFormatUtils.getTime3(getComponent(2));
}
/**
* Get the Time (component2).
* @return the Time from component2
*/
public String getTime() {
return getComponent(2);
}
/**
* Get the Time (component2) as Calendar
* @return the Time from component2 converted to Calendar or null
if cannot be converted
*/
public java.util.Calendar getTimeAsCalendar() {
return SwiftFormatUtils.getTime3(getComponent(2));
}
/**
* Set the component2.
* @param component2 the component2 to set
*/
public void setComponent2(String component2) {
setComponent(2, component2);
}
/**
* Set the component2.
* @param Calendar with the component2 content to set
*/
public void setComponent2(java.util.Calendar component2) {
setComponent(2, SwiftFormatUtils.getTime3(component2));
}
/**
* Set the Time (component2).
* @param component2 the Time to set
*/
public void setTime(String component2) {
setComponent(2, component2);
}
/**
* Set the Time (component2) as Calendar
* @param Calendar with the Time content to set
*/
public void setTime(java.util.Calendar component2) {
setComponent(2, SwiftFormatUtils.getTime3(component2));
}
/**
* Get the component3
* @return the component3
*/
public String getComponent3() {
return getComponent(3);
}
/**
* Get the Sign (component3).
* @return the Sign from component3
*/
public String getSign() {
return getComponent(3);
}
/**
* Set the component3.
* @param component3 the component3 to set
*/
public void setComponent3(String component3) {
setComponent(3, component3);
}
/**
* Set the Sign (component3).
* @param component3 the Sign to set
*/
public void setSign(String component3) {
setComponent(3, component3);
}
/**
* Get the component4
* @return the component4
*/
public String getComponent4() {
return getComponent(4);
}
/**
* Get the component4 as Calendar
* @return the component4 converted to Calendar or null
if cannot be converted
*/
public java.util.Calendar getComponent4AsCalendar() {
return SwiftFormatUtils.getOffset(getComponent(4));
}
/**
* Get the Offset (component4).
* @return the Offset from component4
*/
public String getOffset() {
return getComponent(4);
}
/**
* Get the Offset (component4) as Calendar
* @return the Offset from component4 converted to Calendar or null
if cannot be converted
*/
public java.util.Calendar getOffsetAsCalendar() {
return SwiftFormatUtils.getOffset(getComponent(4));
}
/**
* Set the component4.
* @param component4 the component4 to set
*/
public void setComponent4(String component4) {
setComponent(4, component4);
}
/**
* Set the component4.
* @param Calendar with the component4 content to set
*/
public void setComponent4(java.util.Calendar component4) {
setComponent(4, SwiftFormatUtils.getOffset(component4));
}
/**
* Set the Offset (component4).
* @param component4 the Offset to set
*/
public void setOffset(String component4) {
setComponent(4, component4);
}
/**
* Set the Offset (component4) as Calendar
* @param Calendar with the Offset content to set
*/
public void setOffset(java.util.Calendar component4) {
setComponent(4, SwiftFormatUtils.getOffset(component4));
}
/**
* 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