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

org.graylog2.rest.resources.tools.responses.AutoValue_GrokTesterResponse Maven / Gradle / Ivy

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

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

final class AutoValue_GrokTesterResponse extends $AutoValue_GrokTesterResponse {
  AutoValue_GrokTesterResponse(boolean matched, List matches,
      String pattern, String string, String errorMessage) {
    super(matched, matches, pattern, string, errorMessage);
  }

  @JsonIgnore
  public final boolean isMatched() {
    return matched();
  }

  @JsonIgnore
  @Nullable
  public final List getMatches() {
    return matches();
  }

  @JsonIgnore
  public final String getPattern() {
    return pattern();
  }

  @JsonIgnore
  public final String getString() {
    return string();
  }

  @JsonIgnore
  @Nullable
  public final String getErrorMessage() {
    return errorMessage();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy