Record Class ClassPathModel
java.lang.Object
java.lang.Record
opennlp.tools.models.ClassPathModel
- Record Components:
properties- The common and specific properties of a model.model- The binary form of a model read from the classpath.
A record that holds the binary representation of an OpenNLP model and related properties.
-
Constructor Summary
ConstructorsConstructorDescriptionClassPathModel(Properties properties, byte[] model) Creates an instance of aClassPathModelrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.byte[]model()Returns the value of themodelrecord component.Returns the value of thepropertiesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ClassPathModel
Creates an instance of aClassPathModelrecord class.- Parameters:
properties- the value for thepropertiesrecord componentmodel- the value for themodelrecord component
-
-
Method Details
-
getModelVersion
- Returns:
- Retrieves the value of the
model.versionproperty or"unknown"if it could not be read.
-
getModelName
- Returns:
- Retrieves the value of the
model.nameproperty or"unknown"if it could not be read.
-
getModelSHA256
- Returns:
- Retrieves the value of the
model.sha256property or"unknown"if it could not be read.
-
getModelLanguage
- Returns:
- Retrieves the value of the
model.languageproperty or"unknown"if it could not be read.
-
toString
-
hashCode
-
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). -
properties
Returns the value of thepropertiesrecord component.- Returns:
- the value of the
propertiesrecord component
-
model
-