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

net.sourceforge.plantuml.salt.factory.ScrollStrategy Maven / Gradle / Ivy

// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.salt.factory;

public enum ScrollStrategy {

	BOTH, VERTICAL_ONLY, HORIZONTAL_ONLY;

	public static ScrollStrategy fromDesc(String s) {
		if (s.endsWith("-")) {
			return HORIZONTAL_ONLY;
		}
		if (s.endsWith("I")) {
			return VERTICAL_ONLY;
		}
		return BOTH;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy