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

org.graylog2.rest.models.tools.responses.AutoValue_RegexTesterResponse_Match Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.rest.models.tools.responses;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import javax.annotation.Nullable;

final class AutoValue_RegexTesterResponse_Match extends $AutoValue_RegexTesterResponse_Match {
  AutoValue_RegexTesterResponse_Match(String match, int start, int end) {
    super(match, start, end);
  }

  @JsonIgnore
  @Nullable
  public final String getMatch() {
    return match();
  }

  @JsonIgnore
  public final int getStart() {
    return start();
  }

  @JsonIgnore
  public final int getEnd() {
    return end();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy