001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.preferences;
003
004/**
005 * The different types of source entries.
006 * @since 6670
007 */
008public enum SourceType {
009    /** Entry for a map paint style **/
010    MAP_PAINT_STYLE,
011    /** Entry for a tagging preset **/
012    TAGGING_PRESET,
013    /** Entry for a validator tag checker rule **/
014    TAGCHECKER_RULE
015}