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

technology.semi.weaviate.client.v1.graphql.model.GraphQLErrorLocationsItems Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
// Generated by delombok at Mon Nov 21 14:07:44 UTC 2022
package technology.semi.weaviate.client.v1.graphql.model;

public class GraphQLErrorLocationsItems {
  private Long column;
  private Long line;

  @java.lang.SuppressWarnings("all")
  GraphQLErrorLocationsItems(final Long column, final Long line) {
    this.column = column;
    this.line = line;
  }


  @java.lang.SuppressWarnings("all")
  public static class GraphQLErrorLocationsItemsBuilder {
    @java.lang.SuppressWarnings("all")
    private Long column;
    @java.lang.SuppressWarnings("all")
    private Long line;

    @java.lang.SuppressWarnings("all")
    GraphQLErrorLocationsItemsBuilder() {
    }

    @java.lang.SuppressWarnings("all")
    public GraphQLErrorLocationsItems.GraphQLErrorLocationsItemsBuilder column(final Long column) {
      this.column = column;
      return this;
    }

    @java.lang.SuppressWarnings("all")
    public GraphQLErrorLocationsItems.GraphQLErrorLocationsItemsBuilder line(final Long line) {
      this.line = line;
      return this;
    }

    @java.lang.SuppressWarnings("all")
    public GraphQLErrorLocationsItems build() {
      return new GraphQLErrorLocationsItems(this.column, this.line);
    }

    @java.lang.Override
    @java.lang.SuppressWarnings("all")
    public java.lang.String toString() {
      return "GraphQLErrorLocationsItems.GraphQLErrorLocationsItemsBuilder(column=" + this.column + ", line=" + this.line + ")";
    }
  }

  @java.lang.SuppressWarnings("all")
  public static GraphQLErrorLocationsItems.GraphQLErrorLocationsItemsBuilder builder() {
    return new GraphQLErrorLocationsItems.GraphQLErrorLocationsItemsBuilder();
  }

  @java.lang.SuppressWarnings("all")
  public Long getColumn() {
    return this.column;
  }

  @java.lang.SuppressWarnings("all")
  public Long getLine() {
    return this.line;
  }

  @java.lang.Override
  @java.lang.SuppressWarnings("all")
  public java.lang.String toString() {
    return "GraphQLErrorLocationsItems(column=" + this.getColumn() + ", line=" + this.getLine() + ")";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy