Interface ILcdParser

All Known Implementing Classes:
TLcdAltitudeFormat, TLcdCGRSFormat, TLcdDistanceFormat, TLcdGARSFormat, TLcdGeorefFormat, TLcdLonLatParser, TLcdLonLatPointFormat, TLcdMGRSFormat, TLcdScaleFormat, TLcdSpeedFormat

public interface ILcdParser
This interface defines a method for creating an Object based on a String.
  • Method Summary

    Modifier and Type
    Method
    Description
    parse(String aString)
    Parses a given String and creates a new Object with the corresponding type/properties.
  • Method Details

    • parse

      Object parse(String aString) throws IllegalArgumentException
      Parses a given String and creates a new Object with the corresponding type/properties.
      Parameters:
      aString - the String to be parsed.
      Returns:
      the resulting new Object.
      Throws:
      IllegalArgumentException - if the String can't be parsed.