Class OpenLineageSchemaDataSetFacetField
- java.lang.Object
-
- org.odpi.openmetadata.integrationservices.lineage.properties.OpenLineageSchemaDataSetFacetField
-
public class OpenLineageSchemaDataSetFacetField extends Object
This class represents the description of a field in a data set.
-
-
Constructor Summary
Constructors Constructor Description OpenLineageSchemaDataSetFacetField()Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.StringgetDescription()Return the description of the field.StringgetName()Return the name of the field.StringgetType()Return the type of the field.inthashCode()Return hash code based on properties.voidsetDescription(String description)Set up the description of the field.voidsetName(String name)Set up the name of the field.voidsetType(String type)Set up the type of the field.StringtoString()Standard toString method.
-
-
-
Method Detail
-
getName
public String getName()
Return the name of the field.- Returns:
- string name
-
setName
public void setName(String name)
Set up the name of the field.- Parameters:
name- string name
-
getType
public String getType()
Return the type of the field.- Returns:
- string type name
-
setType
public void setType(String type)
Set up the type of the field.- Parameters:
type- string type name
-
getDescription
public String getDescription()
Return the description of the field.- Returns:
- string description
-
setDescription
public void setDescription(String description)
Set up the description of the field.- Parameters:
description- string description
-
toString
public String toString()
Standard toString method.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.
-
-