Class StructuredNarrativeField

    • Constructor Detail

      • StructuredNarrativeField

        public StructuredNarrativeField()
        Default constructor. Creates a new field setting all components to null.
      • StructuredNarrativeField

        public StructuredNarrativeField​(java.lang.String value)
        Creates a new field and initializes its components with content from the parameter value.
        Parameters:
        value - complete field value including separators and CRLF
    • Method Detail

      • parse

        public void parse​(java.lang.String value)
        Parses the parameter value into the internal components structure.

        The narrative fields are modelled as a single String component containing the complete field value, with all its lines and structured content if any. The API provided for this class allows getting specific lines or specific portions of the structured narrative content with ease.

        Specified by:
        parse in class Field
        Parameters:
        value - complete field value including separators and CRLF
        Since:
        7.8
      • getValueDisplay

        public java.lang.String getValueDisplay​(int component,
                                                java.util.Locale locale)
        Description copied from class: Field
        Returns a localized suitable for showing to humans string of a field component.
        Specified by:
        getValueDisplay in class Field
        Parameters:
        component - number of the component to display
        locale - optional locale to format date and amounts, if null, the default locale is used
        Returns:
        formatted component value or null if component number is invalid or not present
      • getValue

        public java.lang.String getValue()
        Serializes the fields' components into the single string value (SWIFT format)
        Specified by:
        getValue in class Field
        Returns:
        SWIFT formatted value
      • getName

        public abstract java.lang.String getName()
        Description copied from class: Field
        Returns the field's name composed by the field number and the letter option (if any)
        Specified by:
        getName in class Field
        Returns:
        the static value of FieldNN.NAME
      • typesPattern

        public final java.lang.String typesPattern()
        Returns the field component types pattern This method returns a letter representing the type for each component in the Field. It supersedes the Components Pattern because it distinguishes between N (Number) and I (BigDecimal).
        Specified by:
        typesPattern in interface PatternContainer
        Specified by:
        typesPattern in class Field
        Returns:
        the static value of TYPES_PATTERN
        See Also:
        TYPES_PATTERN
      • parserPattern

        public final java.lang.String parserPattern()
        Returns the field parser pattern
        Specified by:
        parserPattern in interface PatternContainer
        Returns:
        the static value of PARSER_PATTERN
      • validatorPattern

        public abstract java.lang.String validatorPattern()
        Returns the field validator pattern, that could vary er specific field
        Specified by:
        validatorPattern in class 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.
        Specified by:
        isOptional in class Field
        Parameters:
        component - component number, first component of a field is referenced as 1
        Returns:
        always returns false since Narrative fields are modelled as a single mandatory component
      • 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:
        always false since narrative fields are not generic fields
      • componentsSize

        public 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.
        Specified by:
        componentsSize in class Field
        Returns:
        for narrative fields this method always returns 1
        Since:
        7.7
      • getComponentLabels

        public java.util.List<java.lang.String> getComponentLabels()
        Returns english label for components.
        The index in the list is in sync with specific field component structure.
        Specified by:
        getComponentLabels in class Field
        Returns:
        for Narrative fields returns a single element for the "Narrative" as a single component
        Since:
        7.8.4
        See Also:
        Field.getComponentLabel(int)
      • getComponentMap

        protected java.util.Map<java.lang.Integer,​java.lang.String> getComponentMap()
        Returns a mapping between component numbers and their label in camel case format.
        Specified by:
        getComponentMap in class Field
        Returns:
        for Narrative fields returns a single entry for the "Narrative" as a single component
        Since:
        7.10.3
      • getLabelMap

        protected java.util.Map<java.lang.String,​java.lang.Integer> getLabelMap()
        Description copied from class: Field
        Returns a mapping between component labels and the internal component number. Component labels are in lowercase and without spaces and separators. If a for a given component there is more than one label option, both are mapped to the same component number.
        Specified by:
        getLabelMap in class Field
        Since:
        9.3.12
        See Also:
        Field.getLabelMap()
      • getComponent1

        public java.lang.String getComponent1()
        Gets the single field component with the complete consolidated narrative content.
        Returns:
        the narrative content
      • appendLine

        public NarrativeContainer appendLine​(java.lang.String line)
        Description copied from interface: NarrativeContainer
        Appends a line of content to this field.

        The parameter line is added to the current value without restrictions or validation. This method is intended for use cases when the internal structure of the field is well-known and you are confident of the content that is added has valid line formats for the specific field.

        Specified by:
        appendLine in interface NarrativeContainer
        Parameters:
        line - a properly formatted line of content such as "/NAME/Joe Doe"
        Returns:
        this field
        See Also:
        NarrativeContainer.appendLine(String)