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

net.anotheria.moskito.webui.util.ConnectivityMode Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.moskito.webui.util;

/**
 * Possible connectivity modes, default should be local.
 *
 * @author lrosenberg
 * @since 21.03.14 17:36
 */
public enum ConnectivityMode {
	LOCAL{
		public boolean isRemote(){ return false;}
	},
	REMOTE{
		public boolean isRemote(){ return true;}
	}
	;

	public abstract boolean isRemote();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy