Package it.unibo.alchemist.boundary
Interface AlchemistModelProvider
-
- All Implemented Interfaces:
public interface AlchemistModelProvider
Translates inputs to a Map representing the Alchemist model.
-
-
Method Summary
Modifier and Type Method Description abstract Map<String, ?>
from(String input)
Reads input from a String. Map<String, ?>
from(Reader input)
Reads input from a Reader. Map<String, ?>
from(InputStream input)
Reads input from an InputStream. Map<String, ?>
from(URL input)
Reads input from a URL. abstract Regex
getFileExtensions()
A Regex matching the file extensions supported by this provider. -
-
Method Detail
-
from
Map<String, ?> from(InputStream input)
Reads input from an InputStream.
-
getFileExtensions
abstract Regex getFileExtensions()
A Regex matching the file extensions supported by this provider.
-
-
-
-