Interface ILcdEarthNamedModelDecoderFactory


public interface ILcdEarthNamedModelDecoderFactory
A factory that maps file format names (strings) to model decoders and vice versa. This mapping is used in the TLcdEarthRasterAssetCodec class to encode and decode model decoders.
Since:
8.2
  • Method Details Link icon

    • getFormatNameForModelDecoder Link icon

      String getFormatNameForModelDecoder(ILcdModelDecoder aModelDecoder)
      Returns the file format name for the given model decoder. This string can be used to retrieve an instance equivalent to the given model decoder.
      Parameters:
      aModelDecoder - A model decoder.
      Returns:
      The file format name for the model decoder.
      See Also:
    • createModelDecoderForFormatName Link icon

      ILcdModelDecoder createModelDecoderForFormatName(String aFormatName)
      Creates a model decoder from the given file format name.
      Parameters:
      aFormatName - A file format name.
      Returns:
      A model decoder.