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

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

The newest version!
package redis.clients.jedis.args;

import java.util.Locale;
import redis.clients.jedis.util.SafeEncoder;

public enum GeoUnit implements Rawable {

  M, KM, MI, FT;

  private final byte[] raw;

  private GeoUnit() {
    raw = SafeEncoder.encode(name().toLowerCase(Locale.ENGLISH));
  }

  @Override
  public byte[] getRaw() {
    return raw;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy