/** * This class is generated by jOOQ */ package org.jooq.util.h2.information_schema.tables; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Record; import org.jooq.Table; import org.jooq.TableField; import org.jooq.impl.TableImpl; import org.jooq.util.h2.information_schema.InformationSchema; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.6.0" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Sequences extends TableImpl<Record> { private static final long serialVersionUID = -1241185884; /** * The reference instance of <code>INFORMATION_SCHEMA.SEQUENCES</code> */ public static final Sequences SEQUENCES = new Sequences(); /** * The class holding records for this type */ @Override public Class<Record> getRecordType() { return Record.class; } /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.SEQUENCE_CATALOG</code>. */ public static final TableField<Record, String> SEQUENCE_CATALOG = createField("SEQUENCE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.SEQUENCE_SCHEMA</code>. */ public static final TableField<Record, String> SEQUENCE_SCHEMA = createField("SEQUENCE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.SEQUENCE_NAME</code>. */ public static final TableField<Record, String> SEQUENCE_NAME = createField("SEQUENCE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.CURRENT_VALUE</code>. */ public static final TableField<Record, Long> CURRENT_VALUE = createField("CURRENT_VALUE", org.jooq.impl.SQLDataType.BIGINT, SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.INCREMENT</code>. */ public static final TableField<Record, Long> INCREMENT = createField("INCREMENT", org.jooq.impl.SQLDataType.BIGINT, SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.IS_GENERATED</code>. */ public static final TableField<Record, Boolean> IS_GENERATED = createField("IS_GENERATED", org.jooq.impl.SQLDataType.BOOLEAN, SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.REMARKS</code>. */ public static final TableField<Record, String> REMARKS = createField("REMARKS", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.CACHE</code>. */ public static final TableField<Record, Long> CACHE = createField("CACHE", org.jooq.impl.SQLDataType.BIGINT, SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.MIN_VALUE</code>. */ public static final TableField<Record, Long> MIN_VALUE = createField("MIN_VALUE", org.jooq.impl.SQLDataType.BIGINT, SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.MAX_VALUE</code>. */ public static final TableField<Record, Long> MAX_VALUE = createField("MAX_VALUE", org.jooq.impl.SQLDataType.BIGINT, SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.IS_CYCLE</code>. */ public static final TableField<Record, Boolean> IS_CYCLE = createField("IS_CYCLE", org.jooq.impl.SQLDataType.BOOLEAN, SEQUENCES, ""); /** * The column <code>INFORMATION_SCHEMA.SEQUENCES.ID</code>. */ public static final TableField<Record, Integer> ID = createField("ID", org.jooq.impl.SQLDataType.INTEGER, SEQUENCES, ""); /** * No further instances allowed */ private Sequences() { this("SEQUENCES", null); } private Sequences(String alias, Table<Record> aliased) { this(alias, aliased, null); } private Sequences(String alias, Table<Record> aliased, Field<?>[] parameters) { super(alias, InformationSchema.INFORMATION_SCHEMA, aliased, parameters, ""); } }