Record Class EntityLabel
java.lang.Object
java.lang.Record
cz.vse.swoe.ontodeside.patomat2.model.EntityLabel
- Record Components:
value- Value of the labelproperty- Property to represent the label, e.g., rdfs:label, skos:prefLabelapply- Whether this label should be applied during the transformation
Representation of an entity label.
-
Constructor Summary
ConstructorsConstructorDescriptionEntityLabel(String value, String property) EntityLabel(String value, String property, boolean apply) Creates an instance of aEntityLabelrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanapply()Returns the value of theapplyrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.property()Returns the value of thepropertyrecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
property
Returns the value of thepropertyrecord component.- Returns:
- the value of the
propertyrecord component
-
apply
public boolean apply()Returns the value of theapplyrecord component.- Returns:
- the value of the
applyrecord component
-