All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mapbox.mapboxsdk.style.layers.PropertyValue Maven / Gradle / Ivy

There is a newer version: 9.2.1
Show newest version
package com.mapbox.mapboxsdk.style.layers;

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

import com.mapbox.mapboxsdk.exceptions.ConversionException;
import com.mapbox.mapboxsdk.style.functions.Function;
import com.mapbox.mapboxsdk.utils.ColorUtils;

import timber.log.Timber;

/**
 * Properties for Layer
 */
public class PropertyValue {

  public final String name;
  public final T value;

  /**
   * Not part of the public API.
   *
   * @param name  the property name
   * @param value the property value
   * @see PropertyFactory for construction of {@link PropertyValue}s
   */
  public 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 getFunction() {
    if (isFunction()) {
      // noinspection unchecked
      return (Function) 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;
    }
  }

  @ColorInt
  @Nullable
  public Integer getColorInt() {
    if (!isValue() || !(value instanceof String)) {
      Timber.e("%s is not a String value and can not be converted to a color it", name);
      return null;
    }

    try {
      return ColorUtils.rgbaToColor((String) value);
    } catch (ConversionException ex) {
      Timber.e("%s could not be converted to a Color int: %s", name, ex.getMessage());
      return null;
    }
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy