technology.semi.weaviate.client.v1.graphql.model.GraphQLErrorLocationsItems Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
A java client for Weaviate Vector Search Engine
// 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() + ")";
}
}