public class Field281 extends Field implements Serializable
Calendar
MOR
Boolean
String
Modifier and Type | Field and Description |
---|---|
static Integer |
ACCEPTED
Component number for the Accepted subfield
|
static String |
COMPONENTS_PATTERN |
static Integer |
ERROR
Component number for the Error subfield
|
static String |
F_281
same as NAME, intended to be clear when using static imports
|
static Integer |
MOR
Component number for the MOR subfield
|
static String |
NAME
Constant with the field name 281
|
static Integer |
OUTPUT_TIME
Component number for the Output Time subfield
|
static String |
PARSER_PATTERN |
components
Constructor and Description |
---|
Field281()
Default constructor
|
Field281(String value)
Creates the field parsing the parameter value into fields' components
|
Modifier and Type | Method and Description |
---|---|
String |
componentsPattern() |
int |
componentsSize()
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. |
static Tag |
emptyTag()
Create a Tag with this field name and an empty string as value
Shorthand for
new Tag(NAME, "") |
static Field281 |
get(SwiftMessage msg)
Get the first instance of Field281 in the given message.
|
static Field281 |
get(SwiftTagListBlock block)
Get the first occurrence form the tag list or null if not found.
|
String |
getAccepted()
Get the Accepted (component3).
|
Boolean |
getAcceptedAsBoolean()
Get the Accepted (component3) as Boolean
|
static List<Field281> |
getAll(SwiftMessage msg)
Get a list of all occurrences of the field Field281 in the given message
an empty list is returned if none found.
|
static List<Field281> |
getAll(SwiftTagListBlock block)
Get a list of all occurrences of the field Field281 from the given block
an empty list is returned if none found.
|
String |
getComponent1()
Get the component1
|
Calendar |
getComponent1AsCalendar()
Get the component1 as Calendar
|
String |
getComponent2()
Get the component2
|
MOR |
getComponent2AsMOR()
Get the component2 as MOR
|
String |
getComponent3()
Get the component3
|
Boolean |
getComponent3AsBoolean()
Get the component3 as Boolean
|
String |
getComponent4()
Get the component4
|
String |
getComponent4AsString()
Deprecated.
|
String |
getError()
Get the Error (component4).
|
String |
getMOR()
Get the MOR (component2).
|
MOR |
getMORAsMOR()
Get the MOR (component2) as MOR
|
String |
getName()
Deprecated.
use constant Field281
|
String |
getOutputTime()
Get the Output Time (component1).
|
Calendar |
getOutputTimeAsCalendar()
Get the Output Time (component1) as Calendar
|
String |
getValue()
Serializes the fields' components into the single string value (SWIFT format)
|
boolean |
isGeneric()
Returns true if the field is a GENERIC FIELD as specified by the standard.
|
boolean |
isOptional(int component)
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. |
static Field281 |
newInstance(Field281 source)
Copy constructor.
Initializes the components list with a deep copy of the source components list. |
String |
parserPattern() |
Field281 |
setAccepted(Boolean component3)
Set the Accepted (component3) as Boolean
|
Field281 |
setAccepted(String component3)
Set the Accepted (component3).
|
Field281 |
setComponent1(Calendar component1)
Set the component1.
|
Field281 |
setComponent1(String component1)
Set the component1.
|
Field281 |
setComponent2(MOR component2)
Set the component2.
|
Field281 |
setComponent2(String component2)
Set the component2.
|
Field281 |
setComponent3(Boolean component3)
Set the component3.
|
Field281 |
setComponent3(String component3)
Set the component3.
|
Field281 |
setComponent4(String component4)
Set the component4.
|
Field281 |
setError(String component4)
Set the Error (component4).
|
Field281 |
setMOR(MOR component2)
Set the MOR (component2) as MOR
|
Field281 |
setMOR(String component2)
Set the MOR (component2).
|
Field281 |
setOutputTime(Calendar component1)
Set the Output Time (component1) as Calendar
|
Field281 |
setOutputTime(String component1)
Set the Output Time (component1).
|
static Tag |
tag(String value)
Create a Tag with this field name and the given value.
|
appendInLines, appendInLines, asTag, equals, findComponentStartingWith, format, formatAccount, formatNumber, getAsBigDecimal, getComponent, getComponentAs, getComponents, getConditionalQualifier, getDSS, getField, getLabel, getLabel, getLabel, getLabel, getLine, getValueByCodeword, getValueDisplay, hashCode, is, is, is, isAnyOf, isDSSPresent, isEmpty, isLetterOption, isNameAnyOf, joinComponents, joinComponents, joinComponents, joinComponents, letterOption, setComponent, setComponents, toString
public static final String NAME
public static final String F_281
public static final String PARSER_PATTERN
public static final String COMPONENTS_PATTERN
public static final Integer OUTPUT_TIME
public static final Integer MOR
public static final Integer ACCEPTED
public static final Integer ERROR
public Field281()
public Field281(String value)
value
- public static Field281 newInstance(Field281 source)
source
- a field instance to copypublic String getValue()
public static Tag tag(String value)
new Tag(NAME, value)
NAME
public static Tag emptyTag()
new Tag(NAME, "")
NAME
public String getComponent1()
public Calendar getComponent1AsCalendar()
null
if cannot be convertedpublic String getOutputTime()
public Calendar getOutputTimeAsCalendar()
null
if cannot be convertedpublic Field281 setComponent1(String component1)
component1
- the component1 to setpublic Field281 setComponent1(Calendar component1)
component1
- the Calendar with the component1 content to setpublic Field281 setOutputTime(String component1)
component1
- the Output Time to setpublic Field281 setOutputTime(Calendar component1)
component1
- Calendar with the Output Time content to setpublic String getComponent2()
public MOR getComponent2AsMOR()
null
if cannot be convertedpublic String getMOR()
public MOR getMORAsMOR()
null
if cannot be convertedpublic Field281 setComponent2(String component2)
component2
- the component2 to setpublic Field281 setComponent2(MOR component2)
component2
- the MOR with the component2 content to setpublic Field281 setMOR(String component2)
component2
- the MOR to setpublic Field281 setMOR(MOR component2)
component2
- MOR with the MOR content to setpublic String getComponent3()
public Boolean getComponent3AsBoolean()
null
if cannot be convertedpublic String getAccepted()
public Boolean getAcceptedAsBoolean()
null
if cannot be convertedpublic Field281 setComponent3(String component3)
component3
- the component3 to setpublic Field281 setComponent3(Boolean component3)
component3
- the Boolean with the component3 content to setpublic Field281 setAccepted(String component3)
component3
- the Accepted to setpublic Field281 setAccepted(Boolean component3)
component3
- Boolean with the Accepted content to setpublic String getComponent4()
@Deprecated public String getComponent4AsString()
public String getError()
public Field281 setComponent4(String component4)
component4
- the component4 to setpublic Field281 setError(String component4)
component4
- the Error to setpublic boolean isOptional(int component)
isOptional
in class Field
component
- component number, first component of a field is referenced as 1public boolean isGeneric()
public String componentsPattern()
componentsPattern
in interface PatternContainer
public String parserPattern()
parserPattern
in interface PatternContainer
public String getName()
Field
public static Field281 get(SwiftTagListBlock block)
block
- may be null or emptypublic static Field281 get(SwiftMessage msg)
msg
- may be empty or nullget(SwiftTagListBlock)
public static List<Field281> getAll(SwiftMessage msg)
msg
- may be empty or null in which case an empty list is returnedgetAll(SwiftTagListBlock)
public static List<Field281> getAll(SwiftTagListBlock block)
block
- may be empty or null in which case an empty list is returnedpublic int componentsSize()
componentsSize
in class Field