/** * Underlying data type of the ORM class and functions. */ public class Employee { Employee(String name) { this.name = name; } String name; }