com.google.api.services.dataplex.v1.model.GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo 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.dataplex.v1.model;
/**
* The profile information for a string type field.
*
* 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 Cloud Dataplex 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 GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo extends com.google.api.client.json.GenericJson {
/**
* Average length of non-null values in the scanned data.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Double averageLength;
/**
* Maximum length of non-null values in the scanned data.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long maxLength;
/**
* Minimum length of non-null values in the scanned data.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long minLength;
/**
* Average length of non-null values in the scanned data.
* @return value or {@code null} for none
*/
public java.lang.Double getAverageLength() {
return averageLength;
}
/**
* Average length of non-null values in the scanned data.
* @param averageLength averageLength or {@code null} for none
*/
public GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo setAverageLength(java.lang.Double averageLength) {
this.averageLength = averageLength;
return this;
}
/**
* Maximum length of non-null values in the scanned data.
* @return value or {@code null} for none
*/
public java.lang.Long getMaxLength() {
return maxLength;
}
/**
* Maximum length of non-null values in the scanned data.
* @param maxLength maxLength or {@code null} for none
*/
public GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo setMaxLength(java.lang.Long maxLength) {
this.maxLength = maxLength;
return this;
}
/**
* Minimum length of non-null values in the scanned data.
* @return value or {@code null} for none
*/
public java.lang.Long getMinLength() {
return minLength;
}
/**
* Minimum length of non-null values in the scanned data.
* @param minLength minLength or {@code null} for none
*/
public GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo setMinLength(java.lang.Long minLength) {
this.minLength = minLength;
return this;
}
@Override
public GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo set(String fieldName, Object value) {
return (GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo) super.set(fieldName, value);
}
@Override
public GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo clone() {
return (GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy