
com.google.api.services.datastream.v1.model.MysqlColumn Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.datastream.v1.model;
/**
* MySQL Column.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Datastream API. For a detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class MysqlColumn extends com.google.api.client.json.GenericJson {
/**
* Column collation.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String collation;
/**
* Column name.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String column;
/**
* The MySQL data type. Full data types list can be found here:
* https://dev.mysql.com/doc/refman/8.0/en/data-types.html
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String dataType;
/**
* Column length.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer length;
/**
* Whether or not the column can accept a null value.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean nullable;
/**
* The ordinal position of the column in the table.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer ordinalPosition;
/**
* Column precision.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer precision;
/**
* Whether or not the column represents a primary key.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean primaryKey;
/**
* Column scale.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer scale;
/**
* Column collation.
* @return value or {@code null} for none
*/
public java.lang.String getCollation() {
return collation;
}
/**
* Column collation.
* @param collation collation or {@code null} for none
*/
public MysqlColumn setCollation(java.lang.String collation) {
this.collation = collation;
return this;
}
/**
* Column name.
* @return value or {@code null} for none
*/
public java.lang.String getColumn() {
return column;
}
/**
* Column name.
* @param column column or {@code null} for none
*/
public MysqlColumn setColumn(java.lang.String column) {
this.column = column;
return this;
}
/**
* The MySQL data type. Full data types list can be found here:
* https://dev.mysql.com/doc/refman/8.0/en/data-types.html
* @return value or {@code null} for none
*/
public java.lang.String getDataType() {
return dataType;
}
/**
* The MySQL data type. Full data types list can be found here:
* https://dev.mysql.com/doc/refman/8.0/en/data-types.html
* @param dataType dataType or {@code null} for none
*/
public MysqlColumn setDataType(java.lang.String dataType) {
this.dataType = dataType;
return this;
}
/**
* Column length.
* @return value or {@code null} for none
*/
public java.lang.Integer getLength() {
return length;
}
/**
* Column length.
* @param length length or {@code null} for none
*/
public MysqlColumn setLength(java.lang.Integer length) {
this.length = length;
return this;
}
/**
* Whether or not the column can accept a null value.
* @return value or {@code null} for none
*/
public java.lang.Boolean getNullable() {
return nullable;
}
/**
* Whether or not the column can accept a null value.
* @param nullable nullable or {@code null} for none
*/
public MysqlColumn setNullable(java.lang.Boolean nullable) {
this.nullable = nullable;
return this;
}
/**
* The ordinal position of the column in the table.
* @return value or {@code null} for none
*/
public java.lang.Integer getOrdinalPosition() {
return ordinalPosition;
}
/**
* The ordinal position of the column in the table.
* @param ordinalPosition ordinalPosition or {@code null} for none
*/
public MysqlColumn setOrdinalPosition(java.lang.Integer ordinalPosition) {
this.ordinalPosition = ordinalPosition;
return this;
}
/**
* Column precision.
* @return value or {@code null} for none
*/
public java.lang.Integer getPrecision() {
return precision;
}
/**
* Column precision.
* @param precision precision or {@code null} for none
*/
public MysqlColumn setPrecision(java.lang.Integer precision) {
this.precision = precision;
return this;
}
/**
* Whether or not the column represents a primary key.
* @return value or {@code null} for none
*/
public java.lang.Boolean getPrimaryKey() {
return primaryKey;
}
/**
* Whether or not the column represents a primary key.
* @param primaryKey primaryKey or {@code null} for none
*/
public MysqlColumn setPrimaryKey(java.lang.Boolean primaryKey) {
this.primaryKey = primaryKey;
return this;
}
/**
* Column scale.
* @return value or {@code null} for none
*/
public java.lang.Integer getScale() {
return scale;
}
/**
* Column scale.
* @param scale scale or {@code null} for none
*/
public MysqlColumn setScale(java.lang.Integer scale) {
this.scale = scale;
return this;
}
@Override
public MysqlColumn set(String fieldName, Object value) {
return (MysqlColumn) super.set(fieldName, value);
}
@Override
public MysqlColumn clone() {
return (MysqlColumn) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy