All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.atlan.model.relations.GlossaryTranslation Maven / Gradle / Ivy
// Generated by delombok at Wed Oct 16 22:16:03 UTC 2024
/* SPDX-License-Identifier: Apache-2.0
Copyright 2024 Atlan Pte. Ltd. */
package com.atlan.model.relations;
import com.atlan.exception.InvalidRequestException;
import com.atlan.model.assets.GlossaryTerm;
import com.atlan.model.assets.IGlossaryTerm;
import com.atlan.model.enums.AtlasGlossaryTermRelationshipStatus;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
/**
* Related terms that represent the same meaning, but each written in a different language. Hence one is a translation of the other. The language of each term is defined in the Glossary object that anchors the term.
*/
@Generated("com.atlan.generators.ModelGeneratorV2")
public class GlossaryTranslation extends RelationshipAttributes {
private static final long serialVersionUID = 2L;
public static final String TYPE_NAME = "AtlasGlossaryTranslation";
/**
* Fixed typeName for GlossaryTranslations.
*/
String typeName;
/**
* TBC
*/
String description;
/**
* TBC
*/
String expression;
/**
* TBC
*/
String source;
/**
* TBC
*/
AtlasGlossaryTermRelationshipStatus status;
/**
* TBC
*/
String steward;
/**
* {@inheritDoc}
*/
@Override
public Map getAll() {
Map map = new HashMap<>();
if (description != null) {
map.put("description", description);
}
if (expression != null) {
map.put("expression", expression);
}
if (source != null) {
map.put("source", source);
}
if (status != null) {
map.put("status", status);
}
if (steward != null) {
map.put("steward", steward);
}
return map;
}
/**
* Related terms that represent the same meaning, but each written in a different language. Hence one is a translation of the other. The language of each term is defined in the Glossary object that anchors the term.
*/
@Generated("com.atlan.generators.ModelGeneratorV2")
public static final class TranslationTerm extends GlossaryTerm {
private static final long serialVersionUID = 2L;
/**
* Fixed typeName for GlossaryTranslation.
*/
String relationshipType;
/**
* Relationship attributes specific to GlossaryTranslation.
*/
GlossaryTranslation relationshipAttributes;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static String $default$relationshipType() {
return GlossaryTranslation.TYPE_NAME;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static abstract class TranslationTermBuilder> extends GlossaryTerm.GlossaryTermBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private boolean relationshipType$set;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private String relationshipType$value;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private GlossaryTranslation relationshipAttributes;
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected B $fillValuesFrom(final C instance) {
super.$fillValuesFrom(instance);
GlossaryTranslation.TranslationTerm.TranslationTermBuilder.$fillValuesFromInstanceIntoBuilder(instance, this);
return self();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static void $fillValuesFromInstanceIntoBuilder(final GlossaryTranslation.TranslationTerm instance, final GlossaryTranslation.TranslationTerm.TranslationTermBuilder, ?> b) {
b.relationshipType(instance.relationshipType);
b.relationshipAttributes(instance.relationshipAttributes);
}
/**
* Fixed typeName for GlossaryTranslation.
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B relationshipType(final String relationshipType) {
this.relationshipType$value = relationshipType;
relationshipType$set = true;
return self();
}
/**
* Relationship attributes specific to GlossaryTranslation.
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B relationshipAttributes(final GlossaryTranslation relationshipAttributes) {
this.relationshipAttributes = relationshipAttributes;
return self();
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected abstract B self();
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public abstract C build();
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public java.lang.String toString() {
return "GlossaryTranslation.TranslationTerm.TranslationTermBuilder(super=" + super.toString() + ", relationshipType$value=" + this.relationshipType$value + ", relationshipAttributes=" + this.relationshipAttributes + ")";
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static final class TranslationTermBuilderImpl extends GlossaryTranslation.TranslationTerm.TranslationTermBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private TranslationTermBuilderImpl() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected GlossaryTranslation.TranslationTerm.TranslationTermBuilderImpl self() {
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation.TranslationTerm build() {
return new GlossaryTranslation.TranslationTerm(this);
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected TranslationTerm(final GlossaryTranslation.TranslationTerm.TranslationTermBuilder, ?> b) {
super(b);
if (b.relationshipType$set) this.relationshipType = b.relationshipType$value;
else this.relationshipType = GlossaryTranslation.TranslationTerm.$default$relationshipType();
this.relationshipAttributes = b.relationshipAttributes;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static GlossaryTranslation.TranslationTerm.TranslationTermBuilder, ?> _internal() {
return new GlossaryTranslation.TranslationTerm.TranslationTermBuilderImpl();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation.TranslationTerm.TranslationTermBuilder, ?> toBuilder() {
return new GlossaryTranslation.TranslationTerm.TranslationTermBuilderImpl().$fillValuesFrom(this);
}
/**
* Relationship attributes specific to GlossaryTranslation.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation getRelationshipAttributes() {
return this.relationshipAttributes;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof GlossaryTranslation.TranslationTerm)) return false;
final GlossaryTranslation.TranslationTerm other = (GlossaryTranslation.TranslationTerm) o;
if (!other.canEqual((java.lang.Object) this)) return false;
if (!super.equals(o)) return false;
final java.lang.Object this$relationshipType = this.getRelationshipType();
final java.lang.Object other$relationshipType = other.getRelationshipType();
if (this$relationshipType == null ? other$relationshipType != null : !this$relationshipType.equals(other$relationshipType)) return false;
final java.lang.Object this$relationshipAttributes = this.getRelationshipAttributes();
final java.lang.Object other$relationshipAttributes = other.getRelationshipAttributes();
if (this$relationshipAttributes == null ? other$relationshipAttributes != null : !this$relationshipAttributes.equals(other$relationshipAttributes)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected boolean canEqual(final java.lang.Object other) {
return other instanceof GlossaryTranslation.TranslationTerm;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public int hashCode() {
final int PRIME = 59;
int result = super.hashCode();
final java.lang.Object $relationshipType = this.getRelationshipType();
result = result * PRIME + ($relationshipType == null ? 43 : $relationshipType.hashCode());
final java.lang.Object $relationshipAttributes = this.getRelationshipAttributes();
result = result * PRIME + ($relationshipAttributes == null ? 43 : $relationshipAttributes.hashCode());
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public java.lang.String toString() {
return "GlossaryTranslation.TranslationTerm(super=" + super.toString() + ", relationshipType=" + this.getRelationshipType() + ", relationshipAttributes=" + this.getRelationshipAttributes() + ")";
}
/**
* Fixed typeName for GlossaryTranslation.
*/
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getRelationshipType() {
return this.relationshipType;
}
}
/**
* Related terms that represent the same meaning, but each written in a different language. Hence one is a translation of the other. The language of each term is defined in the Glossary object that anchors the term.
*/
@Generated("com.atlan.generators.ModelGeneratorV2")
public static final class TranslatedTerm extends GlossaryTerm {
private static final long serialVersionUID = 2L;
/**
* Fixed typeName for GlossaryTranslation.
*/
String relationshipType;
/**
* Relationship attributes specific to GlossaryTranslation.
*/
GlossaryTranslation relationshipAttributes;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static String $default$relationshipType() {
return GlossaryTranslation.TYPE_NAME;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static abstract class TranslatedTermBuilder> extends GlossaryTerm.GlossaryTermBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private boolean relationshipType$set;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private String relationshipType$value;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private GlossaryTranslation relationshipAttributes;
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected B $fillValuesFrom(final C instance) {
super.$fillValuesFrom(instance);
GlossaryTranslation.TranslatedTerm.TranslatedTermBuilder.$fillValuesFromInstanceIntoBuilder(instance, this);
return self();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static void $fillValuesFromInstanceIntoBuilder(final GlossaryTranslation.TranslatedTerm instance, final GlossaryTranslation.TranslatedTerm.TranslatedTermBuilder, ?> b) {
b.relationshipType(instance.relationshipType);
b.relationshipAttributes(instance.relationshipAttributes);
}
/**
* Fixed typeName for GlossaryTranslation.
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B relationshipType(final String relationshipType) {
this.relationshipType$value = relationshipType;
relationshipType$set = true;
return self();
}
/**
* Relationship attributes specific to GlossaryTranslation.
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B relationshipAttributes(final GlossaryTranslation relationshipAttributes) {
this.relationshipAttributes = relationshipAttributes;
return self();
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected abstract B self();
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public abstract C build();
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public java.lang.String toString() {
return "GlossaryTranslation.TranslatedTerm.TranslatedTermBuilder(super=" + super.toString() + ", relationshipType$value=" + this.relationshipType$value + ", relationshipAttributes=" + this.relationshipAttributes + ")";
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static final class TranslatedTermBuilderImpl extends GlossaryTranslation.TranslatedTerm.TranslatedTermBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private TranslatedTermBuilderImpl() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected GlossaryTranslation.TranslatedTerm.TranslatedTermBuilderImpl self() {
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation.TranslatedTerm build() {
return new GlossaryTranslation.TranslatedTerm(this);
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected TranslatedTerm(final GlossaryTranslation.TranslatedTerm.TranslatedTermBuilder, ?> b) {
super(b);
if (b.relationshipType$set) this.relationshipType = b.relationshipType$value;
else this.relationshipType = GlossaryTranslation.TranslatedTerm.$default$relationshipType();
this.relationshipAttributes = b.relationshipAttributes;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static GlossaryTranslation.TranslatedTerm.TranslatedTermBuilder, ?> _internal() {
return new GlossaryTranslation.TranslatedTerm.TranslatedTermBuilderImpl();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation.TranslatedTerm.TranslatedTermBuilder, ?> toBuilder() {
return new GlossaryTranslation.TranslatedTerm.TranslatedTermBuilderImpl().$fillValuesFrom(this);
}
/**
* Relationship attributes specific to GlossaryTranslation.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation getRelationshipAttributes() {
return this.relationshipAttributes;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof GlossaryTranslation.TranslatedTerm)) return false;
final GlossaryTranslation.TranslatedTerm other = (GlossaryTranslation.TranslatedTerm) o;
if (!other.canEqual((java.lang.Object) this)) return false;
if (!super.equals(o)) return false;
final java.lang.Object this$relationshipType = this.getRelationshipType();
final java.lang.Object other$relationshipType = other.getRelationshipType();
if (this$relationshipType == null ? other$relationshipType != null : !this$relationshipType.equals(other$relationshipType)) return false;
final java.lang.Object this$relationshipAttributes = this.getRelationshipAttributes();
final java.lang.Object other$relationshipAttributes = other.getRelationshipAttributes();
if (this$relationshipAttributes == null ? other$relationshipAttributes != null : !this$relationshipAttributes.equals(other$relationshipAttributes)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected boolean canEqual(final java.lang.Object other) {
return other instanceof GlossaryTranslation.TranslatedTerm;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public int hashCode() {
final int PRIME = 59;
int result = super.hashCode();
final java.lang.Object $relationshipType = this.getRelationshipType();
result = result * PRIME + ($relationshipType == null ? 43 : $relationshipType.hashCode());
final java.lang.Object $relationshipAttributes = this.getRelationshipAttributes();
result = result * PRIME + ($relationshipAttributes == null ? 43 : $relationshipAttributes.hashCode());
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public java.lang.String toString() {
return "GlossaryTranslation.TranslatedTerm(super=" + super.toString() + ", relationshipType=" + this.getRelationshipType() + ", relationshipAttributes=" + this.getRelationshipAttributes() + ")";
}
/**
* Fixed typeName for GlossaryTranslation.
*/
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getRelationshipType() {
return this.relationshipType;
}
}
public static abstract class GlossaryTranslationBuilder> extends RelationshipAttributes.RelationshipAttributesBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private boolean typeName$set;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private String typeName$value;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private String description;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private String expression;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private String source;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private AtlasGlossaryTermRelationshipStatus status;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private String steward;
/**
* Build the GlossaryTranslation relationship (with attributes) into a related object.
*
* @param related the related asset to which to build the detailed relationship
* @return a detailed Atlan relationship that conforms to the necessary interface for a related asset
* @throws InvalidRequestException if the asset provided is without a GUID or qualifiedName
*/
public IGlossaryTerm translationTerm(IGlossaryTerm related) throws InvalidRequestException {
GlossaryTranslation attributes = build();
if (related.getGuid() != null && !related.getGuid().isBlank()) {
return TranslationTerm._internal().guid(related.getGuid()).relationshipAttributes(attributes).build();
} else {
return TranslationTerm._internal().uniqueAttributes(UniqueAttributes.builder().qualifiedName(related.getQualifiedName()).build()).relationshipAttributes(attributes).build();
}
}
/**
* Build the GlossaryTranslation relationship (with attributes) into a related object.
*
* @param related the related asset to which to build the detailed relationship
* @return a detailed Atlan relationship that conforms to the necessary interface for a related asset
* @throws InvalidRequestException if the asset provided is without a GUID or qualifiedName
*/
public IGlossaryTerm translatedTerm(IGlossaryTerm related) throws InvalidRequestException {
GlossaryTranslation attributes = build();
if (related.getGuid() != null && !related.getGuid().isBlank()) {
return TranslatedTerm._internal().guid(related.getGuid()).relationshipAttributes(attributes).build();
} else {
return TranslatedTerm._internal().uniqueAttributes(UniqueAttributes.builder().qualifiedName(related.getQualifiedName()).build()).relationshipAttributes(attributes).build();
}
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected B $fillValuesFrom(final C instance) {
super.$fillValuesFrom(instance);
GlossaryTranslation.GlossaryTranslationBuilder.$fillValuesFromInstanceIntoBuilder(instance, this);
return self();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static void $fillValuesFromInstanceIntoBuilder(final GlossaryTranslation instance, final GlossaryTranslation.GlossaryTranslationBuilder, ?> b) {
b.typeName(instance.typeName);
b.description(instance.description);
b.expression(instance.expression);
b.source(instance.source);
b.status(instance.status);
b.steward(instance.steward);
}
/**
* Fixed typeName for GlossaryTranslations.
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B typeName(final String typeName) {
this.typeName$value = typeName;
typeName$set = true;
return self();
}
/**
* TBC
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B description(final String description) {
this.description = description;
return self();
}
/**
* TBC
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B expression(final String expression) {
this.expression = expression;
return self();
}
/**
* TBC
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B source(final String source) {
this.source = source;
return self();
}
/**
* TBC
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B status(final AtlasGlossaryTermRelationshipStatus status) {
this.status = status;
return self();
}
/**
* TBC
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B steward(final String steward) {
this.steward = steward;
return self();
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected abstract B self();
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public abstract C build();
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public java.lang.String toString() {
return "GlossaryTranslation.GlossaryTranslationBuilder(super=" + super.toString() + ", typeName$value=" + this.typeName$value + ", description=" + this.description + ", expression=" + this.expression + ", source=" + this.source + ", status=" + this.status + ", steward=" + this.steward + ")";
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static String $default$typeName() {
return TYPE_NAME;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static final class GlossaryTranslationBuilderImpl extends GlossaryTranslation.GlossaryTranslationBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private GlossaryTranslationBuilderImpl() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected GlossaryTranslation.GlossaryTranslationBuilderImpl self() {
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation build() {
return new GlossaryTranslation(this);
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected GlossaryTranslation(final GlossaryTranslation.GlossaryTranslationBuilder, ?> b) {
super(b);
if (b.typeName$set) this.typeName = b.typeName$value;
else this.typeName = GlossaryTranslation.$default$typeName();
this.description = b.description;
this.expression = b.expression;
this.source = b.source;
this.status = b.status;
this.steward = b.steward;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static GlossaryTranslation.GlossaryTranslationBuilder, ?> builder() {
return new GlossaryTranslation.GlossaryTranslationBuilderImpl();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossaryTranslation.GlossaryTranslationBuilder, ?> toBuilder() {
return new GlossaryTranslation.GlossaryTranslationBuilderImpl().$fillValuesFrom(this);
}
/**
* TBC
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getDescription() {
return this.description;
}
/**
* TBC
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getExpression() {
return this.expression;
}
/**
* TBC
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getSource() {
return this.source;
}
/**
* TBC
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public AtlasGlossaryTermRelationshipStatus getStatus() {
return this.status;
}
/**
* TBC
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getSteward() {
return this.steward;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof GlossaryTranslation)) return false;
final GlossaryTranslation other = (GlossaryTranslation) o;
if (!other.canEqual((java.lang.Object) this)) return false;
if (!super.equals(o)) return false;
final java.lang.Object this$typeName = this.getTypeName();
final java.lang.Object other$typeName = other.getTypeName();
if (this$typeName == null ? other$typeName != null : !this$typeName.equals(other$typeName)) return false;
final java.lang.Object this$description = this.getDescription();
final java.lang.Object other$description = other.getDescription();
if (this$description == null ? other$description != null : !this$description.equals(other$description)) return false;
final java.lang.Object this$expression = this.getExpression();
final java.lang.Object other$expression = other.getExpression();
if (this$expression == null ? other$expression != null : !this$expression.equals(other$expression)) return false;
final java.lang.Object this$source = this.getSource();
final java.lang.Object other$source = other.getSource();
if (this$source == null ? other$source != null : !this$source.equals(other$source)) return false;
final java.lang.Object this$status = this.getStatus();
final java.lang.Object other$status = other.getStatus();
if (this$status == null ? other$status != null : !this$status.equals(other$status)) return false;
final java.lang.Object this$steward = this.getSteward();
final java.lang.Object other$steward = other.getSteward();
if (this$steward == null ? other$steward != null : !this$steward.equals(other$steward)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected boolean canEqual(final java.lang.Object other) {
return other instanceof GlossaryTranslation;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public int hashCode() {
final int PRIME = 59;
int result = super.hashCode();
final java.lang.Object $typeName = this.getTypeName();
result = result * PRIME + ($typeName == null ? 43 : $typeName.hashCode());
final java.lang.Object $description = this.getDescription();
result = result * PRIME + ($description == null ? 43 : $description.hashCode());
final java.lang.Object $expression = this.getExpression();
result = result * PRIME + ($expression == null ? 43 : $expression.hashCode());
final java.lang.Object $source = this.getSource();
result = result * PRIME + ($source == null ? 43 : $source.hashCode());
final java.lang.Object $status = this.getStatus();
result = result * PRIME + ($status == null ? 43 : $status.hashCode());
final java.lang.Object $steward = this.getSteward();
result = result * PRIME + ($steward == null ? 43 : $steward.hashCode());
return result;
}
/**
* Fixed typeName for GlossaryTranslations.
*/
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getTypeName() {
return this.typeName;
}
}