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.GlossarySynonym Maven / Gradle / Ivy
// Generated by delombok at Thu Oct 10 18:56:32 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;
/**
* Terms that have the same (or a very similar) meaning, in the same language.
*/
@Generated("com.atlan.generators.ModelGeneratorV2")
public class GlossarySynonym extends RelationshipAttributes {
private static final long serialVersionUID = 2L;
public static final String TYPE_NAME = "AtlasGlossarySynonym";
/**
* Fixed typeName for GlossarySynonyms.
*/
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;
}
/**
* Terms that have the same (or a very similar) meaning, in the same language.
*/
@Generated("com.atlan.generators.ModelGeneratorV2")
public static final class Synonym extends GlossaryTerm {
private static final long serialVersionUID = 2L;
/**
* Fixed typeName for GlossarySynonym.
*/
String relationshipType;
/**
* Relationship attributes specific to GlossarySynonym.
*/
GlossarySynonym relationshipAttributes;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static String $default$relationshipType() {
return GlossarySynonym.TYPE_NAME;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static abstract class SynonymBuilder> 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 GlossarySynonym relationshipAttributes;
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected B $fillValuesFrom(final C instance) {
super.$fillValuesFrom(instance);
GlossarySynonym.Synonym.SynonymBuilder.$fillValuesFromInstanceIntoBuilder(instance, this);
return self();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static void $fillValuesFromInstanceIntoBuilder(final GlossarySynonym.Synonym instance, final GlossarySynonym.Synonym.SynonymBuilder, ?> b) {
b.relationshipType(instance.relationshipType);
b.relationshipAttributes(instance.relationshipAttributes);
}
/**
* Fixed typeName for GlossarySynonym.
* @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 GlossarySynonym.
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public B relationshipAttributes(final GlossarySynonym 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 "GlossarySynonym.Synonym.SynonymBuilder(super=" + super.toString() + ", relationshipType$value=" + this.relationshipType$value + ", relationshipAttributes=" + this.relationshipAttributes + ")";
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static final class SynonymBuilderImpl extends GlossarySynonym.Synonym.SynonymBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private SynonymBuilderImpl() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected GlossarySynonym.Synonym.SynonymBuilderImpl self() {
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossarySynonym.Synonym build() {
return new GlossarySynonym.Synonym(this);
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected Synonym(final GlossarySynonym.Synonym.SynonymBuilder, ?> b) {
super(b);
if (b.relationshipType$set) this.relationshipType = b.relationshipType$value;
else this.relationshipType = GlossarySynonym.Synonym.$default$relationshipType();
this.relationshipAttributes = b.relationshipAttributes;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static GlossarySynonym.Synonym.SynonymBuilder, ?> _internal() {
return new GlossarySynonym.Synonym.SynonymBuilderImpl();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossarySynonym.Synonym.SynonymBuilder, ?> toBuilder() {
return new GlossarySynonym.Synonym.SynonymBuilderImpl().$fillValuesFrom(this);
}
/**
* Relationship attributes specific to GlossarySynonym.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossarySynonym 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 GlossarySynonym.Synonym)) return false;
final GlossarySynonym.Synonym other = (GlossarySynonym.Synonym) 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 GlossarySynonym.Synonym;
}
@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 "GlossarySynonym.Synonym(super=" + super.toString() + ", relationshipType=" + this.getRelationshipType() + ", relationshipAttributes=" + this.getRelationshipAttributes() + ")";
}
/**
* Fixed typeName for GlossarySynonym.
*/
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getRelationshipType() {
return this.relationshipType;
}
}
public static abstract class GlossarySynonymBuilder> 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 GlossarySynonym 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 synonym(IGlossaryTerm related) throws InvalidRequestException {
GlossarySynonym attributes = build();
if (related.getGuid() != null && !related.getGuid().isBlank()) {
return Synonym._internal().guid(related.getGuid()).relationshipAttributes(attributes).build();
} else {
return Synonym._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);
GlossarySynonym.GlossarySynonymBuilder.$fillValuesFromInstanceIntoBuilder(instance, this);
return self();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
private static void $fillValuesFromInstanceIntoBuilder(final GlossarySynonym instance, final GlossarySynonym.GlossarySynonymBuilder, ?> 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 GlossarySynonyms.
* @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 "GlossarySynonym.GlossarySynonymBuilder(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 GlossarySynonymBuilderImpl extends GlossarySynonym.GlossarySynonymBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private GlossarySynonymBuilderImpl() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected GlossarySynonym.GlossarySynonymBuilderImpl self() {
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossarySynonym build() {
return new GlossarySynonym(this);
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected GlossarySynonym(final GlossarySynonym.GlossarySynonymBuilder, ?> b) {
super(b);
if (b.typeName$set) this.typeName = b.typeName$value;
else this.typeName = GlossarySynonym.$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 GlossarySynonym.GlossarySynonymBuilder, ?> builder() {
return new GlossarySynonym.GlossarySynonymBuilderImpl();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public GlossarySynonym.GlossarySynonymBuilder, ?> toBuilder() {
return new GlossarySynonym.GlossarySynonymBuilderImpl().$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 GlossarySynonym)) return false;
final GlossarySynonym other = (GlossarySynonym) 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 GlossarySynonym;
}
@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 GlossarySynonyms.
*/
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getTypeName() {
return this.typeName;
}
}