Package io.lumify.core.model.properties.types

Source Code of io.lumify.core.model.properties.types.GeoPointLumifyProperty

package io.lumify.core.model.properties.types;

import org.securegraph.Element;
import org.securegraph.type.GeoPoint;

public class GeoPointLumifyProperty extends IdentityLumifyProperty<GeoPoint> {
    public GeoPointLumifyProperty(String key) {
        super(key);
    }

    public GeoPoint getPropertyValue(Element element, GeoPoint defaultValue) {
        GeoPoint nullable = getPropertyValue(element);
        if (nullable == null) {
            return defaultValue;
        }
        return nullable;
    }
}
TOP

Related Classes of io.lumify.core.model.properties.types.GeoPointLumifyProperty

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.