All Downloads are FREE. Search and download functionalities are using the official Maven repository.

li.strolch.job.ConfigureMethod Maven / Gradle / Ivy

The newest version!
package li.strolch.job;

public enum ConfigureMethod {
	Programmatic,
	Model;

	public boolean isProgrammatic() {
		return this == Programmatic;
	}

	public boolean isModel() {
		return this == Model;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy