001package de.econda.droid;
002
003/**
004 * Used for measuring of targets.
005 * 
006 * @author ECONDA GmbH Karlsruhe
007 *
008 */
009public enum TargetRule{
010        /**
011         * Use econda-monitor default settings.
012         */
013        USE_MONITOR_DEFAULT_SETTINGS("d"),
014        /**
015         * Use only one target per session. 
016         */
017        USE_ONLY_FIRST_FROM_SESSION("s"),
018        /**
019         * Use all targets of session. 
020         */
021        ALL("a"),
022        ;
023        public final String transmitKey;
024        
025        TargetRule(String transmitKey){
026                this.transmitKey = transmitKey;
027        }
028        
029}