Class Field11T

  • All Implemented Interfaces:
    JsonSerializable, DateContainer, MultiLineField, PatternContainer, java.io.Serializable

    @ProwideDeprecated(phase3=SRU2024)
    public class Field11T
    extends Field
    implements java.io.Serializable, DateContainer, MultiLineField
    Deprecated.
    This field has been moved to the Prowide Integrator since it is only used in SCORE messages, not in the general MT standard
    SWIFT MT Field 11T.

    Model and parser for field 11T of a SWIFT MT message.

    Subfields (components) Data types

    1. Component 1: Type: Long
    2. Component 2: Date: Calendar
    3. Component 3: Time: Calendar

    Structure definition

    • validation pattern: <MT>$<DATE4><HHMM>
    • parser pattern: S$<DATE4><HHMM>
    • components pattern: NDH

    This class complies with standard release SRU2022

    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String COMPONENTS_PATTERN
      Deprecated.
      Use typesPattern() method instead.
      static java.lang.Integer DATE
      Deprecated.
      Component number for the Date subfield.
      static java.lang.String F_11T
      Deprecated.
      Same as NAME, intended to be clear when using static imports.
      static java.lang.String NAME
      Deprecated.
      Constant with the field name 11T.
      static java.lang.String PARSER_PATTERN
      Deprecated.
      Use parserPattern() method instead.
      static int SRU
      Deprecated.
      Constant identifying the SRU to which this class belongs to.
      static java.lang.Integer TIME
      Deprecated.
      Component number for the Time subfield.
      static java.lang.Integer TYPE
      Deprecated.
      Component number for the Type subfield.
      static java.lang.String TYPES_PATTERN
      Deprecated.
      Use typesPattern() method instead.
    • Constructor Summary

      Constructors 
      Constructor Description
      Field11T()
      Deprecated.
      Default constructor.
      Field11T​(Tag tag)
      Deprecated.
      Creates a new field and initializes its components with content from the parameter tag.
      Field11T​(java.lang.String value)
      Deprecated.
      Creates a new field and initializes its components with content from the parameter value.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.String componentsPattern()
      Deprecated.
      Use typesPattern() instead.
      int componentsSize()
      Deprecated.
      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.
      java.util.Calendar date()
      Deprecated.
      Returns the first component that can be converted to a Calendar
      java.util.List<java.util.Calendar> dates()
      Deprecated.
      Returns all components that can be converted to a Calendar
      static Tag emptyTag()
      Deprecated.
      Create a Tag with this field name and an empty string as value.
      static Field11T fromJson​(java.lang.String json)
      Deprecated.
      This method deserializes the JSON data into a Field11T object.
      static Field11T get​(SwiftMessage msg)
      Deprecated.
      Gets the first instance of Field11T in the given message.
      static Field11T get​(SwiftTagListBlock block)
      Deprecated.
      Gets the first occurrence form the tag list or null if not found.
      static java.util.List<Field11T> getAll​(SwiftMessage msg)
      Deprecated.
      Gets a list of all occurrences of the field Field11T in the given message an empty list is returned if none found.
      static java.util.List<Field11T> getAll​(SwiftTagListBlock block)
      Deprecated.
      Gets a list of all occurrences of the field Field11T from the given block an empty list is returned if none found.
      java.lang.String getComponent1()
      Deprecated.
      Gets the component 1 (Type).
      java.lang.Long getComponent1AsLong()
      Deprecated.
      Get the component 1 as Long
      java.lang.Number getComponent1AsNumber()
      Deprecated.
      java.lang.String getComponent2()
      Deprecated.
      Gets the component 2 (Date).
      java.util.Calendar getComponent2AsCalendar()
      Deprecated.
      Get the component 2 as Calendar
      java.lang.String getComponent3()
      Deprecated.
      Gets the component 3 (Time).
      java.util.Calendar getComponent3AsCalendar()
      Deprecated.
      Get the component 3 as Calendar
      java.util.List<java.lang.String> getComponentLabels()
      Deprecated.
      Returns english label for components.
      protected java.util.Map<java.lang.Integer,​java.lang.String> getComponentMap()
      Deprecated.
      Returns a mapping between component numbers and their label in camel case format.
      java.lang.String getDate()
      Deprecated.
      Gets the Date (component 2).
      java.util.Calendar getDateAsCalendar()
      Deprecated.
      Get the Date (component 2) as Calendar
      protected java.util.Map<java.lang.String,​java.lang.Integer> getLabelMap()
      Deprecated.
      Returns a mapping between component labels and the internal component number.
      java.lang.String getLine​(int line)
      Deprecated.
      Returns a specific line from the field's value.
      java.lang.String getLine​(int line, int offset)
      Deprecated.
      Returns a specific line from the field's value.
      java.util.List<java.lang.String> getLines()
      Deprecated.
      Returns the field value split into lines.
      java.util.List<java.lang.String> getLines​(int offset)
      Deprecated.
      Returns the field value starting at the offset component, split into lines.
      java.util.List<java.lang.String> getLinesBetween​(int start, int end)
      Deprecated.
      Returns a specific subset of lines from the field's value, given a range.
      java.util.List<java.lang.String> getLinesBetween​(int start, int end, int offset)
      Deprecated.
      Returns a specific subset of lines from the field's value, starting at the offset component.
      java.lang.String getName()
      Deprecated.
      Returns the field's name composed by the field number and the letter option (if any).
      java.lang.String getTime()
      Deprecated.
      Gets the Time (component 3).
      java.util.Calendar getTimeAsCalendar()
      Deprecated.
      Get the Time (component 3) as Calendar
      java.lang.String getType()
      Deprecated.
      Gets the Type (component 1).
      java.lang.Long getTypeAsLong()
      Deprecated.
      Get the Type (component 1) as Long
      java.lang.Number getTypeAsNumber()
      Deprecated.
      java.lang.String getValue()
      Deprecated.
      Serializes the fields' components into the single string value (SWIFT format)
      java.lang.String getValueDisplay​(int component, java.util.Locale locale)
      Deprecated.
      Returns a localized suitable for showing to humans string of a field component.
      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.
      static Field11T newInstance​(Field11T source)
      Deprecated.
      Copy constructor.
      void parse​(java.lang.String value)
      Deprecated.
      Parses the parameter value into the internal components structure.
      java.lang.String parserPattern()
      Deprecated.
      Returns the field parser pattern.
      Field11T setComponent1​(java.lang.Long component1)
      Deprecated.
      Set the component1 from a Long object.
      Field11T setComponent1​(java.lang.Number component1)
      Deprecated.
      Alternative method setter for field's Type (component 1) as as Number This method supports java constant value boxing for simpler coding styles (ex: 10 becomes an Integer)
      Field11T setComponent1​(java.lang.String component1)
      Deprecated.
      Set the component 1 (Type).
      Field11T setComponent2​(java.lang.String component2)
      Deprecated.
      Set the component 2 (Date).
      Field11T setComponent2​(java.util.Calendar component2)
      Deprecated.
      Set the component2 from a Calendar object.
      Field11T setComponent3​(java.lang.String component3)
      Deprecated.
      Set the component 3 (Time).
      Field11T setComponent3​(java.util.Calendar component3)
      Deprecated.
      Set the component3 from a Calendar object.
      Field11T setDate​(java.lang.String component2)
      Deprecated.
      Set the Date (component 2).
      Field11T setDate​(java.util.Calendar component2)
      Deprecated.
      Set the Date (component 2) from a Calendar object.
      Field11T setTime​(java.lang.String component3)
      Deprecated.
      Set the Time (component 3).
      Field11T setTime​(java.util.Calendar component3)
      Deprecated.
      Set the Time (component 3) from a Calendar object.
      Field11T setType​(java.lang.Long component1)
      Deprecated.
      Set the Type (component 1) from a Long object.
      Field11T setType​(java.lang.Number component1)
      Deprecated.
      Alternative method setter for field's Type (component 1) as as Number This method supports java constant value boxing for simpler coding styles (ex: 10 becomes an Integer)
      Field11T setType​(java.lang.String component1)
      Deprecated.
      Set the Type (component 1).
      static Tag tag​(java.lang.String value)
      Deprecated.
      Create a Tag with this field name and the given value.
      java.lang.String typesPattern()
      Deprecated.
      Returns the field component types pattern.
      java.lang.String validatorPattern()
      Deprecated.
      Returns the field validator pattern
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Field11T

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

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

        public Field11T​(Tag tag)
        Deprecated.
        Creates a new field and initializes its components with content from the parameter tag. The value is parsed with parse(String)
        Throws:
        java.lang.IllegalArgumentException - if the parameter tag is null or its tagname does not match the field name
        Since:
        7.8
    • Method Detail

      • newInstance

        public static Field11T newInstance​(Field11T source)
        Deprecated.
        Copy constructor. Initializes the components list with a deep copy of the source components list.
        Parameters:
        source - a field instance to copy
        Since:
        7.7
      • tag

        public static Tag tag​(java.lang.String value)
        Deprecated.
        Create a Tag with this field name and the given value. Shorthand for new Tag(NAME, value)
        Since:
        7.5
        See Also:
        NAME
      • emptyTag

        public static Tag emptyTag()
        Deprecated.
        Create a Tag with this field name and an empty string as value. Shorthand for new Tag(NAME, "")
        Since:
        7.5
        See Also:
        NAME
      • parse

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

        Used to update all components from a full new value, as an alternative to setting individual components. Previous component values are overwritten.

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

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

        public java.lang.String getValueDisplay​(int component,
                                                java.util.Locale locale)
        Deprecated.
        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
        Throws:
        java.lang.IllegalArgumentException - if component number is invalid for the field
        Since:
        7.8
      • typesPattern

        public java.lang.String typesPattern()
        Deprecated.
        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
        Since:
        9.2.7
      • parserPattern

        public java.lang.String parserPattern()
        Deprecated.
        Returns the field parser pattern.
        Specified by:
        parserPattern in interface PatternContainer
      • validatorPattern

        public java.lang.String validatorPattern()
        Deprecated.
        Returns the field validator pattern
        Specified by:
        validatorPattern in class Field
      • 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
      • componentsSize

        public int componentsSize()
        Deprecated.
        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
        Since:
        7.7
      • getComponentLabels

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

        protected java.util.Map<java.lang.Integer,​java.lang.String> getComponentMap()
        Deprecated.
        Returns a mapping between component numbers and their label in camel case format.
        Specified by:
        getComponentMap in class Field
        Since:
        7.10.3
      • getLabelMap

        protected java.util.Map<java.lang.String,​java.lang.Integer> getLabelMap()
        Deprecated.
        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()
        Deprecated.
        Gets the component 1 (Type).
        Returns:
        the component 1
      • getComponent1AsLong

        public java.lang.Long getComponent1AsLong()
        Deprecated.
        Get the component 1 as Long
        Returns:
        the component 1 converted to Long or null if cannot be converted
        Since:
        9.2.7
      • getComponent1AsNumber

        @Deprecated
        @ProwideDeprecated(phase4=SRU2024)
        public java.lang.Number getComponent1AsNumber()
        Deprecated.
        Get the component 1 as Number (BigDecimal) The value is returned as BigDecimal to keep compatibility with previous API. You should use getComponent1AsLong() to get the proper value.
        Returns:
        the component 1 converted to Number (BigDecimal) or null if cannot be converted
        See Also:
        getComponent1AsLong()
      • getType

        public java.lang.String getType()
        Deprecated.
        Gets the Type (component 1).
        Returns:
        the Type from component 1
      • getTypeAsLong

        public java.lang.Long getTypeAsLong()
        Deprecated.
        Get the Type (component 1) as Long
        Returns:
        the Type from component 1 converted to Long or null if cannot be converted
        Since:
        9.2.7
      • getTypeAsNumber

        @Deprecated
        @ProwideDeprecated(phase4=SRU2024)
        public java.lang.Number getTypeAsNumber()
        Deprecated.
        Get the Type (component 1) as as Number (BigDecimal) The value is returned as BigDecimal to keep compatibility with previous API. You should use getComponent1AsLong() to get the proper value.
        Returns:
        the component 1 converted to Number (BigDecimal) or null if cannot be converted
        See Also:
        getTypeAsLong()
      • getComponent2

        public java.lang.String getComponent2()
        Deprecated.
        Gets the component 2 (Date).
        Returns:
        the component 2
      • getComponent2AsCalendar

        public java.util.Calendar getComponent2AsCalendar()
        Deprecated.
        Get the component 2 as Calendar
        Returns:
        the component 2 converted to Calendar or null if cannot be converted
      • getDate

        public java.lang.String getDate()
        Deprecated.
        Gets the Date (component 2).
        Returns:
        the Date from component 2
      • getDateAsCalendar

        public java.util.Calendar getDateAsCalendar()
        Deprecated.
        Get the Date (component 2) as Calendar
        Returns:
        the Date from component 2 converted to Calendar or null if cannot be converted
      • getComponent3

        public java.lang.String getComponent3()
        Deprecated.
        Gets the component 3 (Time).
        Returns:
        the component 3
      • getComponent3AsCalendar

        public java.util.Calendar getComponent3AsCalendar()
        Deprecated.
        Get the component 3 as Calendar
        Returns:
        the component 3 converted to Calendar or null if cannot be converted
      • getTime

        public java.lang.String getTime()
        Deprecated.
        Gets the Time (component 3).
        Returns:
        the Time from component 3
      • getTimeAsCalendar

        public java.util.Calendar getTimeAsCalendar()
        Deprecated.
        Get the Time (component 3) as Calendar
        Returns:
        the Time from component 3 converted to Calendar or null if cannot be converted
      • setComponent1

        public Field11T setComponent1​(java.lang.String component1)
        Deprecated.
        Set the component 1 (Type).
        Parameters:
        component1 - the Type to set
        Returns:
        the field object to enable build pattern
      • setComponent1

        public Field11T setComponent1​(java.lang.Long component1)
        Deprecated.
        Set the component1 from a Long object.
        If the component being set is a fixed length number, the argument will not be padded. It is recommended for these cases to use the setComponent1(String) method.
        Parameters:
        component1 - the Long with the Type content to set
        Returns:
        the field object to enable build pattern
        Since:
        9.2.7
        See Also:
        setComponent1(String)
      • setComponent1

        public Field11T setComponent1​(java.lang.Number component1)
        Deprecated.
        Alternative method setter for field's Type (component 1) as as Number This method supports java constant value boxing for simpler coding styles (ex: 10 becomes an Integer)
        Parameters:
        component1 - the Number with the Type content to set
        Returns:
        the field object to enable build pattern
        See Also:
        setType(java.lang.Long)
      • setType

        public Field11T setType​(java.lang.String component1)
        Deprecated.
        Set the Type (component 1).
        Parameters:
        component1 - the Type to set
        Returns:
        the field object to enable build pattern
      • setType

        public Field11T setType​(java.lang.Long component1)
        Deprecated.
        Set the Type (component 1) from a Long object.
        Parameters:
        component1 - Long with the Type content to set
        Returns:
        the field object to enable build pattern
        Since:
        9.2.7
        See Also:
        setComponent1(java.lang.Long)
      • setType

        public Field11T setType​(java.lang.Number component1)
        Deprecated.
        Alternative method setter for field's Type (component 1) as as Number This method supports java constant value boxing for simpler coding styles (ex: 10 becomes an Integer)
        Parameters:
        component1 - the Number with the Type content to set
        Returns:
        the field object to enable build pattern
        See Also:
        setType(java.lang.Long)
      • setComponent2

        public Field11T setComponent2​(java.lang.String component2)
        Deprecated.
        Set the component 2 (Date).
        Parameters:
        component2 - the Date to set
        Returns:
        the field object to enable build pattern
      • setComponent2

        public Field11T setComponent2​(java.util.Calendar component2)
        Deprecated.
        Set the component2 from a Calendar object.
        Parameters:
        component2 - the Calendar with the Date content to set
        Returns:
        the field object to enable build pattern
      • setDate

        public Field11T setDate​(java.lang.String component2)
        Deprecated.
        Set the Date (component 2).
        Parameters:
        component2 - the Date to set
        Returns:
        the field object to enable build pattern
      • setDate

        public Field11T setDate​(java.util.Calendar component2)
        Deprecated.
        Set the Date (component 2) from a Calendar object.
        Parameters:
        component2 - Calendar with the Date content to set
        Returns:
        the field object to enable build pattern
        See Also:
        setComponent2(java.util.Calendar)
      • setComponent3

        public Field11T setComponent3​(java.lang.String component3)
        Deprecated.
        Set the component 3 (Time).
        Parameters:
        component3 - the Time to set
        Returns:
        the field object to enable build pattern
      • setComponent3

        public Field11T setComponent3​(java.util.Calendar component3)
        Deprecated.
        Set the component3 from a Calendar object.
        Parameters:
        component3 - the Calendar with the Time content to set
        Returns:
        the field object to enable build pattern
      • setTime

        public Field11T setTime​(java.lang.String component3)
        Deprecated.
        Set the Time (component 3).
        Parameters:
        component3 - the Time to set
        Returns:
        the field object to enable build pattern
      • setTime

        public Field11T setTime​(java.util.Calendar component3)
        Deprecated.
        Set the Time (component 3) from a Calendar object.
        Parameters:
        component3 - Calendar with the Time content to set
        Returns:
        the field object to enable build pattern
        See Also:
        setComponent3(java.util.Calendar)
      • dates

        public java.util.List<java.util.Calendar> dates()
        Deprecated.
        Returns all components that can be converted to a Calendar
        Specified by:
        dates in interface DateContainer
        Returns:
        the list of converted components (a Calendar object or null)
      • date

        public java.util.Calendar date()
        Deprecated.
        Returns the first component that can be converted to a Calendar
        Returns:
        the converted components (a Calendar object or null)
      • getName

        public java.lang.String getName()
        Deprecated.
        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 Field11T.NAME
      • get

        public static Field11T get​(SwiftTagListBlock block)
        Deprecated.
        Gets the first occurrence form the tag list or null if not found.
        Parameters:
        block - may be null or empty
        Returns:
        null if not found o block is null or empty
      • get

        public static Field11T get​(SwiftMessage msg)
        Deprecated.
        Gets the first instance of Field11T in the given message.
        Parameters:
        msg - may be empty or null
        Returns:
        null if not found or msg is empty or null
        See Also:
        get(SwiftTagListBlock)
      • getAll

        public static java.util.List<Field11T> getAll​(SwiftMessage msg)
        Deprecated.
        Gets a list of all occurrences of the field Field11T in the given message an empty list is returned if none found.
        Parameters:
        msg - may be empty or null in which case an empty list is returned
        See Also:
        getAll(SwiftTagListBlock)
      • getAll

        public static java.util.List<Field11T> getAll​(SwiftTagListBlock block)
        Deprecated.
        Gets a list of all occurrences of the field Field11T from the given block an empty list is returned if none found.
        Parameters:
        block - may be empty or null in which case an empty list is returned
      • getLine

        public java.lang.String getLine​(int line)
        Deprecated.
        Returns a specific line from the field's value.
        Specified by:
        getLine in interface MultiLineField
        Parameters:
        line - a reference to a specific line in the field, first line being 1
        Returns:
        line content or null if not present or if line number is above the expected
        Since:
        7.7
        See Also:
        MultiLineField.getLine(int)
      • getLine

        public java.lang.String getLine​(int line,
                                        int offset)
        Deprecated.
        Returns a specific line from the field's value.
        Specified by:
        getLine in interface MultiLineField
        Parameters:
        line - a reference to a specific line in the field, first line being 1
        offset - an optional component number used as offset when counting lines
        Returns:
        line content or null if not present or if line number is above the expected
        Since:
        7.7
        See Also:
        MultiLineField.getLine(int, int)
      • getLines

        public java.util.List<java.lang.String> getLines()
        Deprecated.
        Returns the field value split into lines.
        Specified by:
        getLines in interface MultiLineField
        Returns:
        lines content or empty list if field's value is empty
        Since:
        7.7
        See Also:
        MultiLineField.getLines()
      • getLines

        public java.util.List<java.lang.String> getLines​(int offset)
        Deprecated.
        Returns the field value starting at the offset component, split into lines.
        Specified by:
        getLines in interface MultiLineField
        Parameters:
        offset - an optional component number used as offset when counting lines
        Returns:
        found lines or empty list if lines are not present or the offset is invalid
        Since:
        7.7
        See Also:
        MultiLineField.getLines(int)
      • getLinesBetween

        public java.util.List<java.lang.String> getLinesBetween​(int start,
                                                                int end)
        Deprecated.
        Returns a specific subset of lines from the field's value, given a range.
        Specified by:
        getLinesBetween in interface MultiLineField
        Parameters:
        start - a reference to a specific line in the field, first line being 1
        end - a reference to a specific line in the field, must be greater than start
        Returns:
        found lines or empty list if value is empty
        Since:
        7.7
        See Also:
        MultiLineField.getLinesBetween(int, int )
      • getLinesBetween

        public java.util.List<java.lang.String> getLinesBetween​(int start,
                                                                int end,
                                                                int offset)
        Deprecated.
        Returns a specific subset of lines from the field's value, starting at the offset component.
        Specified by:
        getLinesBetween in interface MultiLineField
        Parameters:
        start - a reference to a specific line in the field, first line being 1
        end - a reference to a specific line in the field, must be greater than start
        offset - an optional component number used as offset when counting lines
        Returns:
        found lines or empty list if lines are not present or the offset is invalid
        Since:
        7.7
        See Also:
        MultiLineField.getLinesBetween(int start, int end, int offset)
      • fromJson

        public static Field11T fromJson​(java.lang.String json)
        Deprecated.
        This method deserializes the JSON data into a Field11T object.
        Parameters:
        json - JSON structure including tuples with label and value for all field components
        Returns:
        a new field instance with the JSON data parsed into field components or an empty field id the JSON is invalid
        Since:
        7.10.3
        See Also:
        Field.fromJson(String)