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 Summary
ConstructorDescriptionLanguageSample
(Language language, CharSequence context) Creates an instance of aLanguageSample
record class. -
Method Summary
Modifier and TypeMethodDescriptioncontext()
Returns the value of thecontext
record component.final boolean
Indicates whether some other object is "equal to" this one.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.final int
hashCode()
Returns a hash code value for this object.language()
Returns the value of thelanguage
record component.toString()
Returns a string representation of this record class.
-
Constructor Details
-
LanguageSample
Creates an instance of aLanguageSample
record class.- Parameters:
language
- the value for thelanguage
record componentcontext
- the value for thecontext
record component
-
-
Method Details
-
getLanguage
Deprecated, for removal: This API element is subject to removal in a future version. -
getContext
Deprecated, for removal: This API element is subject to removal in a future version. -
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)
. -
language
Returns the value of thelanguage
record component.- Returns:
- the value of the
language
record component
-
context
Returns the value of thecontext
record component.- Returns:
- the value of the
context
record component
-