io.datarouter.instrumentation.schema.FieldDto Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2009 HotPads ([email protected])
*
* 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.
*/
package io.datarouter.instrumentation.schema;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
public class FieldDto{
public final String name;
public final String type;
public final boolean isKey;
public final List attributes;
public final boolean isNullable;
public final int order;
public final boolean isFixedLength;
public final Optional size;
public final String doc;
public FieldDto(
String name,
String type,
boolean isKey,
List attributes,
boolean isNullable,
int order,
boolean isFixedLength,
Optional size,
String doc){
this.name = name;
this.type = type;
this.isKey = isKey;
this.attributes = attributes;
this.isNullable = isNullable;
this.order = order;
this.isFixedLength = isFixedLength;
this.size = size;
this.doc = doc;
}
@Override
public boolean equals(Object obj){
if(obj instanceof FieldDto that){
return this.name.equals(that.name)
&& this.type.equals(that.type)
&& this.isKey == that.isKey
&& this.attributes.equals(that.attributes)
&& this.isNullable == that.isNullable
&& this.order == that.order
&& this.isFixedLength == that.isFixedLength
&& this.size.equals(that.size)
&& this.doc.equals(that.doc);
}else{
return false;
}
}
@Override
public int hashCode(){
return Objects.hash(
this.name,
this.type,
this.isKey,
this.attributes,
this.isNullable,
this.order,
this.isFixedLength,
this.size,
this.doc);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy