com.geotab.model.enumeration.HereMapStyle Maven / Gradle / Ivy
/*
*
* 2020 Copyright (C) Geotab Inc. All rights reserved.
*/
package com.geotab.model.enumeration;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Here Map Style.
*/
public enum HereMapStyle {
/**
* No map style.
*/
NONE("None"),
/**
* The road map style.
*/
ROADMAP("Roadmap"),
/**
* The map satellite style.
*/
SATELLITE("Satellite"),
/**
* The map terrain style.
*/
TERRAIN("Terrain");
private String name;
HereMapStyle(String name) {
this.name = name;
}
@JsonValue
public String getName() {
return name;
}
}