Methods to retrieve field values without 'get' prefix.
In Java Records, accessor methods are automatically generated for each field without the 'get' prefix, making the code cleaner. For example, for a record Product(String name, double price), the accessor methods would be name() and price().