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

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

package com.mapbox.mapboxsdk.style.layers;

import android.support.annotation.Nullable;
import android.util.Log;

/**
 * Properties for Layer
 */
public class PropertyValue {
    private static final String TAG = PropertyValue.class.getSimpleName();

    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 getFunction() {
        if (isFunction()) {
            //noinspection unchecked
            return (Function) value;
        } else {
            Log.w(TAG, "not a function, try value");
            return null;
        }
    }

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

    @Override
    public String toString() {
        return String.format("%s (%s)", getClass().getSimpleName(), value != null ? value.getClass().getSimpleName() : null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy