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

org.graylog2.indexer.searches.AutoValue_IndexRangeStats Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.indexer.searches;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import java.util.List;
import javax.annotation.Nullable;
import org.joda.time.DateTime;

final class AutoValue_IndexRangeStats extends $AutoValue_IndexRangeStats {
  AutoValue_IndexRangeStats(DateTime min, DateTime max, List streamIds) {
    super(min, max, streamIds);
  }

  @JsonIgnore
  public final DateTime getMin() {
    return min();
  }

  @JsonIgnore
  public final DateTime getMax() {
    return max();
  }

  @JsonIgnore
  @Nullable
  public final List getStreamIds() {
    return streamIds();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy