I have a pretty simple question, but i can't manage to find the correct answer.
So in my project i have an abstract class "JmjrstPlugin", from which some other plugins inherit. I'm using javas ServiceLoader to find all of the plugin classes like followed:
public static Iterable<JmjrstPlugin> getPlugins() {
return ServiceLoader.load(JmjrstPlugin.class);
}
To my question: Is the Iterable Object i recieve from this function oredered. (The JmjrstPlugin implements the Comparable interface and has a working compareTo method).
PS: the project is currently in a state which makes it impossible for me to test it right now.