Interface JMadModelDefinitionManager

    • Method Detail

      • getAllModelDefinitions

        java.util.List<JMadModelDefinition> getAllModelDefinitions()
        searches for all available model-definitions.
        Returns:
        all available model definitions or an empty list, if none are available.
      • getModelDefinition

        JMadModelDefinition getModelDefinition​(java.lang.String name,
                                               boolean ignoreCase)
        searches for a model definition with the given name
        Parameters:
        name - the name of the model definition to find.
        ignoreCase - if set to true then the search is performed case insensitive.
        Returns:
        the model definition if found, otherwise null
      • getModelDefinition

        JMadModelDefinition getModelDefinition​(java.lang.String name)
        This is a convenient method which is just a shortcut to getModelDefinition(String, boolean) with the second parameter set to false.
        Parameters:
        name - the name of the model definition to find
        Returns:
        the model definition if found