Interface Ardor3dImporter

All Known Implementing Classes:
BinaryImporter, XMLImporter

public interface Ardor3dImporter
  • Method Summary

    Modifier and Type
    Method
    Description
    load(byte[] data)
    Load a Savable object from the given byte array, starting at the first index.
    load(File file)
    Load a Savable object from the given file.
    Load a Savable object from the given stream.
    load(URL url)
    Load a Savable object from the given URL.
  • Method Details

    • load

      Savable load(InputStream is) throws IOException
      Load a Savable object from the given stream.
      Parameters:
      is - the input stream
      Returns:
      the savable object.
      Throws:
      IOException - exception
    • load

      Savable load(URL url) throws IOException
      Load a Savable object from the given URL.
      Parameters:
      url - the URL
      Returns:
      the savable object.
      Throws:
      IOException - exception
    • load

      Savable load(File file) throws IOException
      Load a Savable object from the given file.
      Parameters:
      file - the file
      Returns:
      the savable object.
      Throws:
      IOException - exception
    • load

      Savable load(byte[] data) throws IOException
      Load a Savable object from the given byte array, starting at the first index.
      Parameters:
      data - the data
      Returns:
      the savable object.
      Throws:
      IOException - exception