com.torodb.backend.udt.MongoTimestampUDT Maven / Gradle / Ivy
/*
* ToroDB
* Copyright © 2014 8Kdata Technology (www.8kdata.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package com.torodb.backend.udt;
import com.torodb.backend.meta.TorodbSchema;
import com.torodb.backend.udt.record.MongoTimestampRecord;
import org.jooq.impl.UDTImpl;
/**
* This class is generated by jOOQ.
*/
@javax.annotation.Generated(value = {"http://www.jooq.org", "3.4.1"},
comments = "This class is generated by jOOQ")
@SuppressWarnings({"all", "unchecked", "rawtypes"})
public class MongoTimestampUDT extends UDTImpl {
public static final String IDENTIFIER = "mongo_timestamp";
private static final long serialVersionUID = -552117608;
/**
* The singleton instance of torodb.mongo_timestamp
*/
public static final MongoTimestampUDT MONGO_TIMESTAMP = new MongoTimestampUDT();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return MongoTimestampRecord.class;
}
/**
* The attribute torodb.mongo_timestap.upper
.
*/
public static final org.jooq.UDTField SECS = createField("secs",
org.jooq.impl.SQLDataType.INTEGER, MONGO_TIMESTAMP);
/**
* The attribute torodb.mongo_timestap.middle
.
*/
public static final org.jooq.UDTField COUNTER = createField(
"counter", org.jooq.impl.SQLDataType.INTEGER, MONGO_TIMESTAMP);
/**
* No further instances allowed
*/
private MongoTimestampUDT() {
super(IDENTIFIER, TorodbSchema.TORODB);
// Initialise data type
getDataType();
}
@Override
public boolean equals(Object that) {
return super.equals(that);
}
@Override
public int hashCode() {
return super.hashCode();
}
}