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 aEntityLabel
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
apply()
Returns the value of theapply
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.property()
Returns the value of theproperty
record component.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record 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 thevalue
record component.- Returns:
- the value of the
value
record component
-
property
Returns the value of theproperty
record component.- Returns:
- the value of the
property
record component
-
apply
public boolean apply()Returns the value of theapply
record component.- Returns:
- the value of the
apply
record component
-