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

net.sourceforge.plantuml.klimt.drawing.eps.EpsStrategy Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.klimt.drawing.eps;

public enum EpsStrategy {

	VERY_SIMPLE, WITH_MACRO, WITH_MACRO_AND_TEXT;

	public EpsGraphics creatEpsGraphics() {
		if (this == VERY_SIMPLE) {
			return new EpsGraphics();
		}
		if (this == WITH_MACRO) {
			return new EpsGraphicsMacro();
		}
		if (this == WITH_MACRO_AND_TEXT) {
			return new EpsGraphicsMacroAndText();
		}
		throw new IllegalArgumentException();
	}

	public static EpsStrategy getDefault2() {
		return WITH_MACRO;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy