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

org.umlg.runtime.collection.Multiplicity Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
package org.umlg.runtime.collection;

public enum Multiplicity {

	ONE_TO_ONE, ZERO_TO_ONE, ONE_TO_MANY, ZERO_TO_MANY;

	public boolean isOne() {
		return this==ONE_TO_ONE || this==ZERO_TO_ONE;
	}

	public boolean isMany() {
		return !isOne();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy