summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/layers/PropertyValue.java
blob: 5286e6916d71d0d525956ac8f936427080bc31e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.mapbox.mapboxsdk.style.layers;

import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

import com.mapbox.mapboxsdk.style.functions.Function;

import timber.log.Timber;

/**
 * Properties for Layer
 */
public class PropertyValue<T> {

  public final String name;
  public final T value;

  /* package */ PropertyValue(@NonNull String name, T value) {
    this.name = name;
    this.value = value;
  }

  public boolean isNull() {
    return value == null;
  }

  public boolean isFunction() {
    return !isNull() && value instanceof Function;
  }

  public boolean isValue() {
    return !isNull() && !isFunction();
  }

  @Nullable
  public Function<?, T> getFunction() {
    if (isFunction()) {
      // noinspection unchecked
      return (Function<?, T>) value;
    } else {
      Timber.w("not a function, try value");
      return null;
    }
  }

  @Nullable
  public T getValue() {
    if (isValue()) {
      // noinspection unchecked
      return (T) value;
    } else {
      Timber.w("not a value, try function");
      return null;
    }
  }

  @Override
  public String toString() {
    return String.format("%s: %s", name, value);
  }
}