com.sangupta.esclient.domain.field.DateUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esclient Show documentation
Show all versions of esclient Show documentation
Strongly-typed SDK for ElasticSearch
The newest version!
package com.sangupta.esclient.domain.field;
import com.google.gson.annotations.SerializedName;
public enum DateUnit {
@SerializedName("seconds")
Seconds,
@SerializedName("milliseconds")
MilliSeconds;
}