Package opennlp.tools.langdetect
Record Class LanguageSample
java.lang.Object
java.lang.Record
opennlp.tools.langdetect.LanguageSample
- All Implemented Interfaces:
- Serializable
public record LanguageSample(Language language, CharSequence context)
extends Record
implements Serializable
Holds a classified document and its 
Language.- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionLanguageSample(Language language, CharSequence context) Creates an instance of aLanguageSamplerecord class.
- 
Method SummaryModifier and TypeMethodDescriptioncontext()Returns the value of thecontextrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.language()Returns the value of thelanguagerecord component.toString()Returns a string representation of this record class.
- 
Constructor Details- 
LanguageSampleCreates an instance of aLanguageSamplerecord class.- Parameters:
- language- the value for the- languagerecord component
- context- the value for the- contextrecord component
 
 
- 
- 
Method Details- 
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).
- 
languageReturns the value of thelanguagerecord component.- Returns:
- the value of the languagerecord component
 
- 
contextReturns the value of thecontextrecord component.- Returns:
- the value of the contextrecord component
 
 
-