Record Class GlyphsConfig
java.lang.Object
java.lang.Record
cz.fidentis.analyst.engines.glyphs.GlyphsConfig
- Record Components:
pointSamplingConfig
- Configuration of sub-sampling method
Configuration object for glyphs.
-
Constructor Summary
ConstructorsConstructorDescriptionGlyphsConfig
(PointSamplingConfig pointSamplingConfig) Creates an instance of aGlyphsConfig
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.Instantiates and returns a symmetry visitor.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepointSamplingConfig
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
GlyphsConfig
Creates an instance of aGlyphsConfig
record class.- Parameters:
pointSamplingConfig
- the value for thepointSamplingConfig
record component
-
-
Method Details
-
getVisitor
Instantiates and returns a symmetry visitor.- Returns:
- a symmetry visitor
-
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)
. -
pointSamplingConfig
Returns the value of thepointSamplingConfig
record component.- Returns:
- the value of the
pointSamplingConfig
record component
-