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

io.quarkus.redis.datasource.geo.GeoUnit Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.redis.datasource.geo;

import java.util.Locale;

public enum GeoUnit {

    /**
     * meter.
     */
    M,

    /**
     * kilometer.
     */
    KM,

    /**
     * feet.
     */
    FT,

    /**
     * mile.
     */
    MI;

    public String toString() {
        // Redis 6 requires lower case, uppercase has only been added in Redis 7.
        return name().toLowerCase(Locale.ROOT);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy