001package org.intellimate.izou.sdk.frameworks.presence.provider; 002 003/** 004 * contains some constants describing different levels of indication that the user is around. 005 * Mainly used internally the following way: 006 * for killing events: the weakest decides 007 * for deciding presence: the strongest decides 008 * @author LeanderK 009 * @version 1.0 010 */ 011public enum PresenceIndicatorLevel { 012 STRONG, WEAK, VERY_WEAK 013}