summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/functions/stops/IdentityStops.java
blob: 2c0b198dc2f048cad980a20659fae6068972aa42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mapbox.mapboxsdk.style.functions.stops;

/**
 * The {@link Stops} implementation for identity functions
 *
 * @param <T> the input/output type
 */
public class IdentityStops<T> extends Stops<T, T> {

  /**
   * {@inheritDoc}
   */
  @Override
  protected String getTypeName() {
    return "identity";
  }

}