package com.mapbox.mapboxsdk.style.functions.stops; /** * The {@link Stops} implementation for identity functions * * @param the input/output type */ public class IdentityStops extends Stops { /** * {@inheritDoc} */ @Override protected String getTypeName() { return "identity"; } }