Record Class NerEntities.NerEntity
java.lang.Object
java.lang.Record
com.iqser.red.service.redaction.v1.server.model.NerEntities.NerEntity
- Enclosing class:
- NerEntities
public static record NerEntities.NerEntity(String value, TextRange textRange, String type, Double confidence, NerEntities.Engine engine)
extends Record
Represents a single NER entity with its value, text range, and type.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconfidence
record component.engine()
Returns the value of theengine
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.Returns the value of thetextRange
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
NerEntity
-
NerEntity
public NerEntity(String value, TextRange textRange, String type, Double confidence, NerEntities.Engine engine) Creates an instance of aNerEntity
record class.- Parameters:
value
- the value for thevalue
record componenttextRange
- the value for thetextRange
record componenttype
- the value for thetype
record componentconfidence
- the value for theconfidence
record componentengine
- the value for theengine
record component
-
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
textRange
Returns the value of thetextRange
record component.- Returns:
- the value of the
textRange
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
confidence
Returns the value of theconfidence
record component.- Returns:
- the value of the
confidence
record component
-
engine
Returns the value of theengine
record component.- Returns:
- the value of the
engine
record component
-