org.jooq.Name Java Examples
The following examples show how to use
org.jooq.Name.
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: NsNamespaces.java From oneops with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public NsNamespaces as(Name alias) { return new NsNamespaces(alias, this); }
Example #2
Source File: DjRfcCi.java From oneops with Apache License 2.0 | 4 votes |
private DjRfcCi(Name alias, Table<DjRfcCiRecord> aliased, Field<?>[] parameters) { super(alias, null, aliased, parameters, ""); }
Example #3
Source File: CmCiRelationAttributes.java From oneops with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public CmCiRelationAttributes rename(Name name) { return new CmCiRelationAttributes(name, null); }
Example #4
Source File: DjRfcCi.java From oneops with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public DjRfcCi rename(Name name) { return new DjRfcCi(name, null); }
Example #5
Source File: NsOptTag.java From oneops with Apache License 2.0 | 4 votes |
private NsOptTag(Name alias, Table<NsOptTagRecord> aliased, Field<?>[] parameters) { super(alias, null, aliased, parameters, ""); }
Example #6
Source File: UserTable.java From StubbornJava with MIT License | 4 votes |
/** * Rename this table */ @Override public UserTable rename(Name name) { return new UserTable(name, null); }
Example #7
Source File: PostTable.java From StubbornJava with MIT License | 4 votes |
/** * {@inheritDoc} */ @Override public PostTable as(Name alias) { return new PostTable(alias, this); }
Example #8
Source File: MdClasses.java From oneops with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public MdClasses as(Name alias) { return new MdClasses(alias, this); }
Example #9
Source File: DjRfcCi.java From oneops with Apache License 2.0 | 4 votes |
/** * Create an aliased <code>kloopzcm.dj_rfc_ci</code> table reference */ public DjRfcCi(Name alias) { this(alias, DJ_RFC_CI); }
Example #10
Source File: CmsLock.java From oneops with Apache License 2.0 | 4 votes |
private CmsLock(Name alias, Table<CmsLockRecord> aliased) { this(alias, aliased, null); }
Example #11
Source File: CmNsOpt.java From oneops with Apache License 2.0 | 4 votes |
private CmNsOpt(Name alias, Table<CmNsOptRecord> aliased, Field<?>[] parameters) { super(alias, null, aliased, parameters, ""); }
Example #12
Source File: CrawlEntities.java From oneops with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public CrawlEntities rename(Name name) { return new CrawlEntities(name, null); }
Example #13
Source File: CrawlEntities.java From oneops with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public CrawlEntities as(Name alias) { return new CrawlEntities(alias, this); }
Example #14
Source File: Place.java From curiostack with MIT License | 4 votes |
/** * Create an aliased <code>cafemapdb.place</code> table reference */ public Place(Name alias) { this(alias, PLACE); }
Example #15
Source File: DjDeploymentStateHist.java From oneops with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public DjDeploymentStateHist rename(Name name) { return new DjDeploymentStateHist(name, null); }
Example #16
Source File: NsOptTag.java From oneops with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public NsOptTag rename(Name name) { return new NsOptTag(name, null); }
Example #17
Source File: Pages.java From redpipe with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public Pages rename(Name name) { return new Pages(name, null); }
Example #18
Source File: PostTagTable.java From StubbornJava with MIT License | 4 votes |
/** * {@inheritDoc} */ @Override public PostTagTable as(Name alias) { return new PostTagTable(alias, this); }
Example #19
Source File: DjDpmtApprovals.java From oneops with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public DjDpmtApprovals as(Name alias) { return new DjDpmtApprovals(alias, this); }
Example #20
Source File: DjDeploymentStates.java From oneops with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public DjDeploymentStates as(Name alias) { return new DjDeploymentStates(alias, this); }
Example #21
Source File: MdRelationAttributes.java From oneops with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public MdRelationAttributes rename(Name name) { return new MdRelationAttributes(name, null); }
Example #22
Source File: DjDpmtApprovals.java From oneops with Apache License 2.0 | 4 votes |
/** * Create an aliased <code>kloopzcm.dj_dpmt_approvals</code> table reference */ public DjDpmtApprovals(Name alias) { this(alias, DJ_DPMT_APPROVALS); }
Example #23
Source File: CmsEventQueue.java From oneops with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public CmsEventQueue as(Name alias) { return new CmsEventQueue(alias, this); }
Example #24
Source File: Files.java From fasten with Apache License 2.0 | 4 votes |
private Files(Name alias, Table<FilesRecord> aliased, Field<?>[] parameters) { super(alias, null, aliased, parameters, DSL.comment("")); }
Example #25
Source File: Files.java From fasten with Apache License 2.0 | 4 votes |
private Files(Name alias, Table<FilesRecord> aliased) { this(alias, aliased, null); }
Example #26
Source File: Files.java From fasten with Apache License 2.0 | 4 votes |
/** * Create an aliased <code>public.files</code> table reference */ public Files(Name alias) { this(alias, FILES); }
Example #27
Source File: MdClassActions.java From oneops with Apache License 2.0 | 4 votes |
/** * Create an aliased <code>kloopzcm.md_class_actions</code> table reference */ public MdClassActions(Name alias) { this(alias, MD_CLASS_ACTIONS); }
Example #28
Source File: CmsCiEventQueue.java From oneops with Apache License 2.0 | 4 votes |
/** * Create an aliased <code>kloopzcm.cms_ci_event_queue</code> table reference */ public CmsCiEventQueue(Name alias) { this(alias, CMS_CI_EVENT_QUEUE); }
Example #29
Source File: CmCi.java From oneops with Apache License 2.0 | 4 votes |
private CmCi(Name alias, Table<CmCiRecord> aliased, Field<?>[] parameters) { super(alias, null, aliased, parameters, ""); }
Example #30
Source File: NsOpt.java From oneops with Apache License 2.0 | 4 votes |
/** * Rename this table */ @Override public NsOpt rename(Name name) { return new NsOpt(name, null); }