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

net.bpelunit.model.bpel._2_0.TBooleanHelper Maven / Gradle / Ivy

The newest version!
package net.bpelunit.model.bpel._2_0;

import org.oasis_open.docs.wsbpel._2_0.process.executable.TBoolean;

final class TBooleanHelper {

	private TBooleanHelper() {
	}
	
	public static boolean convert(TBoolean b) {
		return b.equals(TBoolean.YES);
	}
	
	public static TBoolean convert(boolean b) {
		if(b) {
			return TBoolean.YES;
		} else {
			return TBoolean.NO;
		}
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy