/** * This class is generated by jOOQ */ package classes.udt; import classes.Public; import classes.udt.records.PassportRecord; import javax.annotation.Generated; import org.jooq.Schema; import org.jooq.UDTField; import org.jooq.impl.UDTImpl; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.6" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Passport extends UDTImpl { private static final long serialVersionUID = 1046752436; /** * The reference instance of public.passport */ public static final Passport PASSPORT = new Passport(); /** * The class holding records for this type */ @Override public Class getRecordType() { return PassportRecord.class; } /** * The attribute public.passport.serial_number. */ public static final UDTField SERIAL_NUMBER = createField("serial_number", org.jooq.impl.SQLDataType.INTEGER, PASSPORT, ""); /** * The attribute public.passport.id. */ public static final UDTField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER, PASSPORT, ""); /** * No further instances allowed */ private Passport() { super("passport", null); } /** * {@inheritDoc} */ @Override public Schema getSchema() { return Public.PUBLIC; } }