com.prowidesoftware.swift.model.field
Class Field95P

java.lang.Object
  extended by com.prowidesoftware.swift.model.field.Field
      extended by com.prowidesoftware.swift.model.field.Field95P
All Implemented Interfaces:
BICContainer, GenericField, PatternContainer, java.io.Serializable

public class Field95P
extends Field
implements java.io.Serializable, BICContainer, GenericField

Field 95P

validation pattern: :4!c//|
parser pattern: :S//S
components pattern: SB

Components Data types

NOTE: this source code has been generated.

Author:
www.prowidesoftware.com
See Also:
Serialized Form

Field Summary
static java.lang.String COMPONENTS_PATTERN
           
static java.lang.String NAME
           
static java.lang.String PARSER_PATTERN
           
 
Fields inherited from class com.prowidesoftware.swift.model.field.Field
components
 
Constructor Summary
Field95P()
          Default constructor
Field95P(java.lang.String value)
          Creates the field parsing the parameter value into fields' components
 
Method Summary
 java.util.List<BIC> bics()
          Utility method that creates a BIC for every string returned by BICContainer.bicStrings()
 java.util.List<java.lang.String> bicStrings()
          Get a list of strings of BICs present in this field
 java.lang.String componentsPattern()
           
 java.lang.String getBIC()
          Get the BIC (component2).
 BIC getBICAsBIC()
          Get the BIC (component2) as BIC
 java.lang.String getComponent1()
          Get the component1
 java.lang.String getComponent1AsString()
          Deprecated. 
 java.lang.String getComponent2()
          Get the component2
 BIC getComponent2AsBIC()
          Get the component2 as BIC
 java.lang.String getConditionalQualifier()
          Gets the conditional qualifier.
The conditional qualifier is the the component following the DSS of generic fields, being component 2 or 3 depending on the field structure definition.
 java.lang.String getDSS()
          Returns the issuer code (or Data Source Scheme or DSS).
 java.lang.String getQualifier()
          Get the Qualifier (component1).
 java.lang.String getValue()
          Serializes the fields' components into the single string value (SWIFT format)
 boolean isDSSPresent()
          Checks if the issuer code (or Data Source Scheme or DSS) is present.
 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.
 java.lang.String parserPattern()
           
 void setBIC(BIC component2)
          Set the BIC (component2) as BIC
 void setBIC(java.lang.String component2)
          Set the BIC (component2).
 void setComponent1(java.lang.String component1)
          Set the component1.
 void setComponent2(BIC component2)
          Set the component2.
 void setComponent2(java.lang.String component2)
          Set the component2.
 void setQualifier(java.lang.String component1)
          Set the Qualifier (component1).
 
Methods inherited from class com.prowidesoftware.swift.model.field.Field
appendInLines, appendInLines, equals, findComponentStartingWith, format, formatAccount, formatNumber, getAsBigDecimal, getComponent, getComponentAs, getComponents, getField, getLabel, getLabel, getLabel, getLabel, getName, getValueByCodeword, getValueDisplay, hashCode, isEmpty, joinComponents, joinComponents, joinComponents, joinComponents, setComponent, setComponents, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

NAME

public static final java.lang.String NAME
See Also:
Constant Field Values

PARSER_PATTERN

public static final java.lang.String PARSER_PATTERN
See Also:
Constant Field Values

COMPONENTS_PATTERN

public static final java.lang.String COMPONENTS_PATTERN
See Also:
Constant Field Values
Constructor Detail

Field95P

public Field95P()
Default constructor


Field95P

public Field95P(java.lang.String value)
Creates the field parsing the parameter value into fields' components

Parameters:
value -
Method Detail

getValue

public java.lang.String getValue()
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()
Get the component1

Returns:
the component1

getComponent1AsString

@Deprecated
public java.lang.String getComponent1AsString()
Deprecated. 

Same as getComponent(1)


getQualifier

public java.lang.String getQualifier()
Get the Qualifier (component1).

Returns:
the Qualifier from component1

setComponent1

public void setComponent1(java.lang.String component1)
Set the component1.

Parameters:
component1 - the component1 to set

setQualifier

public void setQualifier(java.lang.String component1)
Set the Qualifier (component1).

Parameters:
component1 - the Qualifier to set

getComponent2

public java.lang.String getComponent2()
Get the component2

Returns:
the component2

getComponent2AsBIC

public BIC getComponent2AsBIC()
Get the component2 as BIC

Returns:
the component2 converted to BIC or null if cannot be converted

getBIC

public java.lang.String getBIC()
Get the BIC (component2).

Returns:
the BIC from component2

getBICAsBIC

public BIC getBICAsBIC()
Get the BIC (component2) as BIC

Returns:
the BIC from component2 converted to BIC or null if cannot be converted

setComponent2

public void setComponent2(java.lang.String component2)
Set the component2.

Parameters:
component2 - the component2 to set

setComponent2

public void setComponent2(BIC component2)
Set the component2.

Parameters:
component2 - the BIC with the component2 content to set

setBIC

public void setBIC(java.lang.String component2)
Set the BIC (component2).

Parameters:
component2 - the BIC to set

setBIC

public void setBIC(BIC component2)
Set the BIC (component2) as BIC

Parameters:
component2 - BIC with the BIC content to set

bics

public java.util.List<BIC> bics()
Description copied from interface: BICContainer
Utility method that creates a BIC for every string returned by BICContainer.bicStrings()

Specified by:
bics in interface BICContainer

bicStrings

public java.util.List<java.lang.String> bicStrings()
Description copied from interface: BICContainer
Get a list of strings of BICs present in this field

Specified by:
bicStrings in interface BICContainer
Returns:
a list, with zero or more BICs in this field.

isOptional

public 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.

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()
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

getDSS

public java.lang.String getDSS()
Returns the issuer code (or Data Source Scheme or DSS). The DSS is only present in some generic fields, when present, is equals to component two.

Specified by:
getDSS in interface GenericField
Overrides:
getDSS in class Field
Returns:
DSS component value or null if the DSS is not set or not available for this field.

isDSSPresent

public boolean isDSSPresent()
Checks if the issuer code (or Data Source Scheme or DSS) is present.

Specified by:
isDSSPresent in interface GenericField
Overrides:
isDSSPresent in class Field
Returns:
true if DSS is present, false otherwise.
See Also:
getDSS()

getConditionalQualifier

public java.lang.String getConditionalQualifier()
Gets the conditional qualifier.
The conditional qualifier is the the component following the DSS of generic fields, being component 2 or 3 depending on the field structure definition.

Specified by:
getConditionalQualifier in interface GenericField
Overrides:
getConditionalQualifier in class Field
Returns:
for generic fields returns the value of the conditional qualifier or null if not set or not applicable for this kind of field.

componentsPattern

public java.lang.String componentsPattern()
Specified by:
componentsPattern in interface PatternContainer

parserPattern

public java.lang.String parserPattern()
Specified by:
parserPattern in interface PatternContainer