org.jooq.types.UInteger Java Examples

The following examples show how to use org.jooq.types.UInteger. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DitagFeatureRecord.java    From hmftools with GNU General Public License v3.0 6 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public DitagFeatureRecord values(UInteger value1, UInteger value2, UInteger value3, UInteger value4, UInteger value5, UInteger value6, Byte value7, UShort value8, UInteger value9, UInteger value10, Byte value11, String value12, DitagFeatureDitagSide value13) {
    value1(value1);
    value2(value2);
    value3(value3);
    value4(value4);
    value5(value5);
    value6(value6);
    value7(value7);
    value8(value8);
    value9(value9);
    value10(value10);
    value11(value11);
    value12(value12);
    value13(value13);
    return this;
}
 
Example #2
Source File: MappingSetRecord.java    From hmftools with GNU General Public License v3.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public MappingSetRecord values(UInteger value1, String value2, String value3) {
    value1(value1);
    value2(value2);
    value3(value3);
    return this;
}
 
Example #3
Source File: GeneAttribRecord.java    From hmftools with GNU General Public License v3.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public GeneAttribRecord values(UInteger value1, UShort value2, String value3) {
    value1(value1);
    value2(value2);
    value3(value3);
    return this;
}
 
Example #4
Source File: AltAlleleAttribRecord.java    From hmftools with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Create a detached, initialised AltAlleleAttribRecord
 */
public AltAlleleAttribRecord(UInteger altAlleleId, AltAlleleAttribAttrib attrib) {
    super(AltAlleleAttrib.ALT_ALLELE_ATTRIB);

    set(0, altAlleleId);
    set(1, attrib);
}
 
Example #5
Source File: StableIdEventRecord.java    From hmftools with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Create a detached, initialised StableIdEventRecord
 */
public StableIdEventRecord(String oldStableId, Short oldVersion, String newStableId, Short newVersion, UInteger mappingSessionId, StableIdEventType type, Double score) {
    super(StableIdEvent.STABLE_ID_EVENT);

    set(0, oldStableId);
    set(1, oldVersion);
    set(2, newStableId);
    set(3, newVersion);
    set(4, mappingSessionId);
    set(5, type);
    set(6, score);
}
 
Example #6
Source File: SeqRegionAttribRecord.java    From hmftools with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Create a detached, initialised SeqRegionAttribRecord
 */
public SeqRegionAttribRecord(UInteger seqRegionId, UShort attribTypeId, String value) {
    super(SeqRegionAttrib.SEQ_REGION_ATTRIB);

    set(0, seqRegionId);
    set(1, attribTypeId);
    set(2, value);
}
 
Example #7
Source File: DnaRecord.java    From hmftools with GNU General Public License v3.0 5 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public DnaRecord values(UInteger value1, String value2) {
    value1(value1);
    value2(value2);
    return this;
}
 
Example #8
Source File: DnaAlignFeatureAttribRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Field<UInteger> field1() {
    return DnaAlignFeatureAttrib.DNA_ALIGN_FEATURE_ATTRIB.DNA_ALIGN_FEATURE_ID;
}
 
Example #9
Source File: CoordSystemRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public CoordSystemRecord value1(UInteger value) {
    setCoordSystemId(value);
    return this;
}
 
Example #10
Source File: AltAlleleRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Field<UInteger> field3() {
    return AltAllele.ALT_ALLELE.GENE_ID;
}
 
Example #11
Source File: DensityFeatureRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public DensityFeatureRecord value3(UInteger value) {
    setSeqRegionId(value);
    return this;
}
 
Example #12
Source File: GeneArchiveRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public UInteger value7() {
    return getPeptideArchiveId();
}
 
Example #13
Source File: MarkerMapLocationRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Row6<UInteger, UInteger, String, UInteger, String, Double> fieldsRow() {
    return (Row6) super.fieldsRow();
}
 
Example #14
Source File: TranslationRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public TranslationRecord value4(UInteger value) {
    setStartExonId(value);
    return this;
}
 
Example #15
Source File: AssemblyRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Field<UInteger> field1() {
    return Assembly.ASSEMBLY.ASM_SEQ_REGION_ID;
}
 
Example #16
Source File: OperonTranscriptGeneRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public OperonTranscriptGeneRecord value2(UInteger value) {
    setGeneId(value);
    return this;
}
 
Example #17
Source File: AssemblyExceptionRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Field<UInteger> field1() {
    return AssemblyException.ASSEMBLY_EXCEPTION.ASSEMBLY_EXCEPTION_ID;
}
 
Example #18
Source File: SeqRegionAttribRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Row3<UInteger, UShort, String> valuesRow() {
    return (Row3) super.valuesRow();
}
 
Example #19
Source File: SeqRegionMappingRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public SeqRegionMappingRecord value3(UInteger value) {
    setMappingSetId(value);
    return this;
}
 
Example #20
Source File: SeqRegionRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public SeqRegionRecord value1(UInteger value) {
    setSeqRegionId(value);
    return this;
}
 
Example #21
Source File: AssemblyRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Row7<UInteger, UInteger, Integer, Integer, Integer, Integer, Byte> valuesRow() {
    return (Row7) super.valuesRow();
}
 
Example #22
Source File: OperonTranscriptRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public OperonTranscriptRecord value6(UInteger value) {
    setOperonId(value);
    return this;
}
 
Example #23
Source File: TranslationRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Row10<UInteger, UInteger, Integer, UInteger, Integer, UInteger, String, UShort, Timestamp, Timestamp> valuesRow() {
    return (Row10) super.valuesRow();
}
 
Example #24
Source File: DataFileRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Field<UInteger> field1() {
    return DataFile.DATA_FILE.DATA_FILE_ID;
}
 
Example #25
Source File: OperonTranscriptGeneRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Row2<UInteger, UInteger> fieldsRow() {
    return (Row2) super.fieldsRow();
}
 
Example #26
Source File: DnaAlignFeatureRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public DnaAlignFeatureRecord value15(UInteger value) {
    setExternalDbId(value);
    return this;
}
 
Example #27
Source File: DnaAlignFeatureRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public Field<UInteger> field15() {
    return DnaAlignFeature.DNA_ALIGN_FEATURE.EXTERNAL_DB_ID;
}
 
Example #28
Source File: SeqRegionSynonymRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public UInteger value1() {
    return getSeqRegionSynonymId();
}
 
Example #29
Source File: TranscriptRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public TranscriptRecord value4(UInteger value) {
    setSeqRegionId(value);
    return this;
}
 
Example #30
Source File: MarkerSynonymRecord.java    From hmftools with GNU General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public UInteger value2() {
    return getMarkerId();
}