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

redis.clients.jedis.GeoUnit Maven / Gradle / Ivy

package redis.clients.jedis;

import redis.clients.jedis.util.SafeEncoder;

public enum GeoUnit {
  M, KM, MI, FT;

  public final byte[] raw;

  GeoUnit() {
    raw = SafeEncoder.encode(this.name().toLowerCase());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy