summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/layers/PropertyValue.java
blob: c404f07c76673f45ab204d902a1fbec8e76f56f3 (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
package com.mapbox.mapboxsdk.style.layers;

import android.support.annotation.Nullable;

import timber.log.Timber;

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

  private final Object value;

  /* package */ PropertyValue(Object value) {
    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)", getClass().getSimpleName(), value != null
      ? value.getClass().getSimpleName() : null);
  }
}