com.afrigis.services.LibMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core Java library to ease use of AfriGIS Services
package com.afrigis.services;
/**
*
* Small enum to encode the possible values for the libmode
meta
* info we have to add.
*
*
* @author hendrikc
*
*/
public enum LibMode {
/**
*
* Indicates the library calls are being used in synchronous mode.
*
*/
sync,
/**
*
* Indicates the library calls are being used in asynchronous mode.
*
*/
async,
/**
*
* Indicates that the library was just used to generate a URL. An external code base executed the URL.
*
*/
url;
}