mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-21 08:32:05 +00:00

Co-authored-by: Harshal Sheth <harshal@acryl.io> Co-authored-by: Dexter Lee <dexter@acryl.io> Co-authored-by: Gabe Lyons <itsgabelyons@gmail.com>
60 lines
1.1 KiB
Java
60 lines
1.1 KiB
Java
package graphql;
|
|
|
|
|
|
@javax.annotation.Generated(
|
|
value = "com.kobylynskyi.graphql.codegen.GraphQLCodegen",
|
|
date = "2021-05-03T10:56:06-0700"
|
|
)
|
|
public class Row implements java.io.Serializable {
|
|
|
|
private java.util.List<String> values;
|
|
|
|
public Row() {
|
|
}
|
|
|
|
public Row(java.util.List<String> values) {
|
|
this.values = values;
|
|
}
|
|
|
|
/**
|
|
* All values are expected to be strings.
|
|
*/
|
|
public java.util.List<String> getValues() {
|
|
return values;
|
|
}
|
|
/**
|
|
* All values are expected to be strings.
|
|
*/
|
|
public void setValues(java.util.List<String> values) {
|
|
this.values = values;
|
|
}
|
|
|
|
|
|
|
|
public static Row.Builder builder() {
|
|
return new Row.Builder();
|
|
}
|
|
|
|
public static class Builder {
|
|
|
|
private java.util.List<String> values;
|
|
|
|
public Builder() {
|
|
}
|
|
|
|
/**
|
|
* All values are expected to be strings.
|
|
*/
|
|
public Builder setValues(java.util.List<String> values) {
|
|
this.values = values;
|
|
return this;
|
|
}
|
|
|
|
|
|
public Row build() {
|
|
return new Row(values);
|
|
}
|
|
|
|
}
|
|
}
|