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