Package opennlp.tools.models
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.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionClassPathModel(Properties properties, byte[] model) Creates an instance of aClassPathModelrecord class.
- 
Method SummaryModifier 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- 
ClassPathModelCreates an instance of aClassPathModelrecord class.- Parameters:
- properties- the value for the- propertiesrecord component
- model- the value for the- modelrecord 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.
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
propertiesReturns the value of thepropertiesrecord component.- Returns:
- the value of the propertiesrecord component
 
- 
modelpublic byte[] model()Returns the value of themodelrecord component.- Returns:
- the value of the modelrecord component
 
 
-