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

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

There is a newer version: 5.2.7
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_SubstringTesterResponse extends $AutoValue_SubstringTesterResponse {
  AutoValue_SubstringTesterResponse(boolean successful, String cut, int beginIndex, int endIndex) {
    super(successful, cut, beginIndex, endIndex);
  }

  @JsonIgnore
  public final boolean isSuccessful() {
    return successful();
  }

  @JsonIgnore
  @Nullable
  public final String getCut() {
    return cut();
  }

  @JsonIgnore
  public final int getBeginIndex() {
    return beginIndex();
  }

  @JsonIgnore
  public final int getEndIndex() {
    return endIndex();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy