001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.imagery.vectortile.mapbox.style;
003
004/**
005 * The "source type" for the data (Mapbox Vector Style specification)
006 *
007 * @author Taylor Smock
008 * @since 17862
009 */
010public enum SourceType {
011    VECTOR,
012    RASTER,
013    RASTER_DEM,
014    GEOJSON,
015    IMAGE,
016    VIDEO
017}