001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.conflict.tags;
003
004/**
005 * Represents a decision for a tag conflict due to multiple possible values.
006 *
007 *
008 */
009public enum MultiValueDecisionType {
010    /** not yet decided */
011    UNDECIDED,
012    /** keep exactly one values */
013    KEEP_ONE,
014    /** keep no value, delete the tag */
015    KEEP_NONE,
016    /** keep all values; concatenate them with ; */
017    KEEP_ALL,
018}