SN
components pattern: ECN
Components Data types
- component1:
Calendar
- component2:
Currency
- component3:
Number
NOTE: this source code has been generated.
- Author:
- www.prowidesoftware.com
- See Also:
- Serialized Form
Fields inherited from class com.prowidesoftware.swift.model.field.Field |
components |
Constructor Summary |
Field34D()
Deprecated. Default constructor |
Field34D(java.lang.String value)
Deprecated. Creates the field parsing the parameter value into fields' components |
Method Summary |
java.math.BigDecimal |
amount()
Deprecated. Get the first amount in this field. |
java.util.List<java.math.BigDecimal> |
amounts()
Deprecated. |
java.lang.String |
componentsPattern()
Deprecated. |
java.util.List<java.util.Currency> |
currencies()
Deprecated. Utility method that creates a Currency for every string returned by CurrencyContainer.currencyStrings() |
java.util.Currency |
currency()
Deprecated. Analog to CurrencyContainer.currencyString() |
java.lang.String |
currencyString()
Deprecated. Get the single currency contained in this field. |
java.util.List<java.lang.String> |
currencyStrings()
Deprecated. Get a list of strings of currencies present in this field |
java.util.List<java.util.Calendar> |
dates()
Deprecated. Get a calendar for every date found |
java.lang.String |
getAmount()
Deprecated. Get the Amount (component3). |
java.lang.Number |
getAmountAsNumber()
Deprecated. Get the Amount (component3) as Number |
java.lang.String |
getComponent1()
Deprecated. Get the component1 |
java.util.Calendar |
getComponent1AsCalendar()
Deprecated. Get the component1 as Calendar |
java.lang.String |
getComponent2()
Deprecated. Get the component2 |
java.util.Currency |
getComponent2AsCurrency()
Deprecated. Get the component2 as Currency |
java.lang.String |
getComponent3()
Deprecated. Get the component3 |
java.lang.Number |
getComponent3AsNumber()
Deprecated. Get the component3 as Number |
java.lang.String |
getCurrency()
Deprecated. Get the Currency (component2). |
java.util.Currency |
getCurrencyAsCurrency()
Deprecated. Get the Currency (component2) as Currency |
java.lang.String |
getDate()
Deprecated. Get the Date (component1). |
java.util.Calendar |
getDateAsCalendar()
Deprecated. Get the Date (component1) as Calendar |
java.lang.String |
getValue()
Deprecated. Serializes the fields' components into the single string value (SWIFT format) |
void |
initializeCurrencies(java.util.Currency cur)
Deprecated. |
void |
initializeCurrencies(java.lang.String cur)
Deprecated. set the currency of this field. |
boolean |
isGeneric()
Deprecated. Returns true if the field is a GENERIC FIELD as specified by the standard. |
boolean |
isOptional(int component)
Deprecated. 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. |
java.lang.String |
parserPattern()
Deprecated. |
void |
setAmount(java.lang.Number component3)
Deprecated. Set the Amount (component3) as Number |
void |
setAmount(java.lang.String component3)
Deprecated. Set the Amount (component3). |
void |
setComponent1(java.util.Calendar component1)
Deprecated. Set the component1. |
void |
setComponent1(java.lang.String component1)
Deprecated. Set the component1. |
void |
setComponent2(java.util.Currency component2)
Deprecated. Set the component2. |
void |
setComponent2(java.lang.String component2)
Deprecated. Set the component2. |
void |
setComponent3(java.lang.Number component3)
Deprecated. Set the component3. |
void |
setComponent3(java.lang.String component3)
Deprecated. Set the component3. |
void |
setCurrency(java.util.Currency component2)
Deprecated. Set the Currency (component2) as Currency |
void |
setCurrency(java.lang.String component2)
Deprecated. Set the Currency (component2). |
void |
setDate(java.util.Calendar component1)
Deprecated. Set the Date (component1) as Calendar |
void |
setDate(java.lang.String component1)
Deprecated. Set the Date (component1). |
Methods inherited from class com.prowidesoftware.swift.model.field.Field |
appendInLines, appendInLines, equals, findComponentStartingWith, format, formatAccount, formatNumber, getAsBigDecimal, getComponent, getComponentAs, getComponents, getConditionalQualifier, getDSS, getField, getLabel, getLabel, getLabel, getLabel, getName, getValueByCodeword, getValueDisplay, hashCode, isDSSPresent, isEmpty, joinComponents, joinComponents, joinComponents, joinComponents, setComponent, setComponents, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
NAME
public static final java.lang.String NAME
- Deprecated.
- See Also:
- Constant Field Values
PARSER_PATTERN
public static final java.lang.String PARSER_PATTERN
- Deprecated.
- See Also:
- Constant Field Values
COMPONENTS_PATTERN
public static final java.lang.String COMPONENTS_PATTERN
- Deprecated.
- See Also:
- Constant Field Values
Field34D
public Field34D()
- Deprecated.
- Default constructor
Field34D
public Field34D(java.lang.String value)
- Deprecated.
- Creates the field parsing the parameter value into fields' components
- Parameters:
value
-
getValue
public java.lang.String getValue()
- Deprecated.
- Serializes the fields' components into the single string value (SWIFT format)
- Overrides:
getValue
in class Field
- Returns:
- SWIFT formatted value
getComponent1
public java.lang.String getComponent1()
- Deprecated.
- Get the component1
- Returns:
- the component1
getComponent1AsCalendar
public java.util.Calendar getComponent1AsCalendar()
- Deprecated.
- Get the component1 as Calendar
- Returns:
- the component1 converted to Calendar or
null
if cannot be converted
getDate
public java.lang.String getDate()
- Deprecated.
- Get the Date (component1).
- Returns:
- the Date from component1
getDateAsCalendar
public java.util.Calendar getDateAsCalendar()
- Deprecated.
- Get the Date (component1) as Calendar
- Returns:
- the Date from component1 converted to Calendar or
null
if cannot be converted
setComponent1
public void setComponent1(java.lang.String component1)
- Deprecated.
- Set the component1.
- Parameters:
component1
- the component1 to set
setComponent1
public void setComponent1(java.util.Calendar component1)
- Deprecated.
- Set the component1.
- Parameters:
component1
- the Calendar with the component1 content to set
setDate
public void setDate(java.lang.String component1)
- Deprecated.
- Set the Date (component1).
- Parameters:
component1
- the Date to set
setDate
public void setDate(java.util.Calendar component1)
- Deprecated.
- Set the Date (component1) as Calendar
- Parameters:
component1
- Calendar with the Date content to set
getComponent2
public java.lang.String getComponent2()
- Deprecated.
- Get the component2
- Returns:
- the component2
getComponent2AsCurrency
public java.util.Currency getComponent2AsCurrency()
- Deprecated.
- Get the component2 as Currency
- Returns:
- the component2 converted to Currency or
null
if cannot be converted
getCurrency
public java.lang.String getCurrency()
- Deprecated.
- Get the Currency (component2).
- Returns:
- the Currency from component2
getCurrencyAsCurrency
public java.util.Currency getCurrencyAsCurrency()
- Deprecated.
- Get the Currency (component2) as Currency
- Returns:
- the Currency from component2 converted to Currency or
null
if cannot be converted
setComponent2
public void setComponent2(java.lang.String component2)
- Deprecated.
- Set the component2.
- Parameters:
component2
- the component2 to set
setComponent2
public void setComponent2(java.util.Currency component2)
- Deprecated.
- Set the component2.
- Parameters:
component2
- the Currency with the component2 content to set
setCurrency
public void setCurrency(java.lang.String component2)
- Deprecated.
- Set the Currency (component2).
- Parameters:
component2
- the Currency to set
setCurrency
public void setCurrency(java.util.Currency component2)
- Deprecated.
- Set the Currency (component2) as Currency
- Parameters:
component2
- Currency with the Currency content to set
getComponent3
public java.lang.String getComponent3()
- Deprecated.
- Get the component3
- Returns:
- the component3
getComponent3AsNumber
public java.lang.Number getComponent3AsNumber()
- Deprecated.
- Get the component3 as Number
- Returns:
- the component3 converted to Number or
null
if cannot be converted
getAmount
public java.lang.String getAmount()
- Deprecated.
- Get the Amount (component3).
- Returns:
- the Amount from component3
getAmountAsNumber
public java.lang.Number getAmountAsNumber()
- Deprecated.
- Get the Amount (component3) as Number
- Returns:
- the Amount from component3 converted to Number or
null
if cannot be converted
setComponent3
public void setComponent3(java.lang.String component3)
- Deprecated.
- Set the component3.
- Parameters:
component3
- the component3 to set
setComponent3
public void setComponent3(java.lang.Number component3)
- Deprecated.
- Set the component3.
- Parameters:
component3
- the Number with the component3 content to set
setAmount
public void setAmount(java.lang.String component3)
- Deprecated.
- Set the Amount (component3).
- Parameters:
component3
- the Amount to set
setAmount
public void setAmount(java.lang.Number component3)
- Deprecated.
- Set the Amount (component3) as Number
- Parameters:
component3
- Number with the Amount content to set
currencyStrings
public java.util.List<java.lang.String> currencyStrings()
- Deprecated.
- Description copied from interface:
CurrencyContainer
- Get a list of strings of currencies present in this field
- Specified by:
currencyStrings
in interface CurrencyContainer
- Returns:
- a list, with zero or more currencies in this field.
currencies
public java.util.List<java.util.Currency> currencies()
- Deprecated.
- Description copied from interface:
CurrencyContainer
- Utility method that creates a Currency for every string returned by
CurrencyContainer.currencyStrings()
- Specified by:
currencies
in interface CurrencyContainer
currency
public java.util.Currency currency()
- Deprecated.
- Description copied from interface:
CurrencyContainer
- Analog to
CurrencyContainer.currencyString()
- Specified by:
currency
in interface CurrencyContainer
- See Also:
CurrencyContainer.currencyStrings()
,
CurrencyContainer.currencyString()
currencyString
public java.lang.String currencyString()
- Deprecated.
- Description copied from interface:
CurrencyContainer
- Get the single currency contained in this field.
- Specified by:
currencyString
in interface CurrencyContainer
- Returns:
- null if no currency is contained - which should never happen, or throws an exception if more than one currency is present in this field.
initializeCurrencies
public void initializeCurrencies(java.lang.String cur)
- Deprecated.
- Description copied from interface:
CurrencyContainer
- set the currency of this field.
If this field contains more than one currency then all currency components will be set.
Individual setComponentNN should be used to set only one component of the field.
- Specified by:
initializeCurrencies
in interface CurrencyContainer
initializeCurrencies
public void initializeCurrencies(java.util.Currency cur)
- Deprecated.
- Specified by:
initializeCurrencies
in interface CurrencyContainer
- See Also:
CurrencyContainer.initializeCurrencies(String)
dates
public java.util.List<java.util.Calendar> dates()
- Deprecated.
- Description copied from interface:
DateContainer
- Get a calendar for every date found
- Specified by:
dates
in interface DateContainer
amounts
public java.util.List<java.math.BigDecimal> amounts()
- Deprecated.
amount
public java.math.BigDecimal amount()
- Deprecated.
- Description copied from interface:
AmountContainer
- Get the first amount in this field.
- Specified by:
amount
in interface AmountContainer
isOptional
public boolean isOptional(int component)
- Deprecated.
- 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.
- Specified by:
isOptional
in class Field
- Parameters:
component
- component number, first component of a field is referenced as 1
- Returns:
- true if the component is optional for this field, false otherwise
isGeneric
public boolean isGeneric()
- Deprecated.
- Returns true if the field is a GENERIC FIELD as specified by the standard.
- Specified by:
isGeneric
in class Field
- Returns:
- true if the field is generic, false otherwise
componentsPattern
public java.lang.String componentsPattern()
- Deprecated.
- Specified by:
componentsPattern
in interface PatternContainer
parserPattern
public java.lang.String parserPattern()
- Deprecated.
- Specified by:
parserPattern
in interface PatternContainer