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

net.sourceforge.plantuml.sequencediagram.graphic.LifeSegmentVariation Maven / Gradle / Ivy

There is a newer version: 1.2025.0
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.sequencediagram.graphic;

public enum LifeSegmentVariation {
	LARGER, SMALLER;

	public int apply(int v) {
		if (this == LARGER) {
			return v + 1;
		}
		assert this == SMALLER;
		if (v == 0) {
			return 0;
		}
		return v - 1;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy