Class ValidValueElement
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetowner.metadataelements.ValidValueElement
-
- All Implemented Interfaces:
Serializable,MetadataElement
public class ValidValueElement extends Object implements MetadataElement, Serializable
ValidValueElement contains the properties and header for a valid value definition or set entity retrieved from the metadata repository.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValidValueElement()Default constructorValidValueElement(ValidValueElement template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.ElementHeadergetElementHeader()Return the element header associated with the properties.booleangetIsDefaultValue()Return whether this valid value is the default of the setGUID (if supplied)StringgetSetGUID()Return the set unique identifier if the valid value is retrieved via a set.ValidValuePropertiesgetValidValueProperties()Return the properties for the valid value definition or set.inthashCode()Return hash code for this objectvoidsetElementHeader(ElementHeader elementHeader)Set up the element header associated with the properties.voidsetIsDefaultValue(boolean defaultValue)Set up whether this valid value is the default of the setGUID (if supplied).voidsetSetGUID(String setGUID)Set up the set unique identifier if the valid value is retrieved via a set.voidsetValidValueProperties(ValidValueProperties validValueProperties)Set up the properties for the valid value definition or set.StringtoString()JSON-style toString
-
-
-
Constructor Detail
-
ValidValueElement
public ValidValueElement()
Default constructor
-
ValidValueElement
public ValidValueElement(ValidValueElement template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getElementHeader
public ElementHeader getElementHeader()
Return the element header associated with the properties.- Specified by:
getElementHeaderin interfaceMetadataElement- Returns:
- element header object
-
setElementHeader
public void setElementHeader(ElementHeader elementHeader)
Set up the element header associated with the properties.- Specified by:
setElementHeaderin interfaceMetadataElement- Parameters:
elementHeader- element header object
-
getValidValueProperties
public ValidValueProperties getValidValueProperties()
Return the properties for the valid value definition or set.- Returns:
- properties bean
-
setValidValueProperties
public void setValidValueProperties(ValidValueProperties validValueProperties)
Set up the properties for the valid value definition or set.- Parameters:
validValueProperties- properties bean
-
getSetGUID
public String getSetGUID()
Return the set unique identifier if the valid value is retrieved via a set.- Returns:
- string identifier
-
setSetGUID
public void setSetGUID(String setGUID)
Set up the set unique identifier if the valid value is retrieved via a set.- Parameters:
setGUID- string identifier
-
getIsDefaultValue
public boolean getIsDefaultValue()
Return whether this valid value is the default of the setGUID (if supplied)- Returns:
- flag
-
setIsDefaultValue
public void setIsDefaultValue(boolean defaultValue)
Set up whether this valid value is the default of the setGUID (if supplied).- Parameters:
defaultValue- flag
-
toString
public String toString()
JSON-style toString
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.
-
-