Java Code Examples for org.jooq.impl.DSL#name()

The following examples show how to use org.jooq.impl.DSL#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: DjRfcCi.java    From oneops with Apache License 2.0 4 votes vote down vote up
/**
 * Create an aliased <code>kloopzcm.dj_rfc_ci</code> table reference
 */
public DjRfcCi(String alias) {
    this(DSL.name(alias), DJ_RFC_CI);
}
 
Example 2
Source File: Something.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Something as(String alias) {
    return new Something(DSL.name(alias), this);
}
 
Example 3
Source File: Dependencies.java    From fasten with Apache License 2.0 4 votes vote down vote up
/**
 * Rename this table
 */
@Override
public Dependencies rename(String name) {
    return new Dependencies(DSL.name(name), null);
}
 
Example 4
Source File: Something.java    From vertx-jooq with MIT License 4 votes vote down vote up
/**
 * Rename this table
 */
@Override
public Something rename(String name) {
    return new Something(DSL.name(name), null);
}
 
Example 5
Source File: Somethingwithoutjson.java    From vertx-jooq with MIT License 4 votes vote down vote up
/**
 * Create a <code>vertx.somethingWithoutJson</code> table reference
 */
public Somethingwithoutjson() {
    this(DSL.name("somethingWithoutJson"), null);
}
 
Example 6
Source File: DjReleaseRevLabel.java    From oneops with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public DjReleaseRevLabel as(String alias) {
    return new DjReleaseRevLabel(DSL.name(alias), this);
}
 
Example 7
Source File: Something.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Something as(String alias) {
    return new Something(DSL.name(alias), this);
}
 
Example 8
Source File: DjNsOpt.java    From oneops with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public DjNsOpt as(String alias) {
    return new DjNsOpt(DSL.name(alias), this);
}
 
Example 9
Source File: Somethingcomposite.java    From vertx-jooq with MIT License 4 votes vote down vote up
/**
 * Rename this table
 */
@Override
public Somethingcomposite rename(String name) {
    return new Somethingcomposite(DSL.name(name), null);
}
 
Example 10
Source File: Author.java    From SimpleFlatMapper with MIT License 4 votes vote down vote up
/**
 * Create a <code>PUBLIC.AUTHOR</code> table reference
 */
public Author() {
    this(DSL.name("AUTHOR"), null);
}
 
Example 11
Source File: DjRfcCi.java    From oneops with Apache License 2.0 4 votes vote down vote up
/**
 * Rename this table
 */
@Override
public DjRfcCi rename(String name) {
    return new DjRfcCi(DSL.name(name), null);
}
 
Example 12
Source File: Something.java    From vertx-jooq with MIT License 4 votes vote down vote up
/**
 * Rename this table
 */
@Override
public Something rename(String name) {
    return new Something(DSL.name(name), null);
}
 
Example 13
Source File: Files.java    From fasten with Apache License 2.0 4 votes vote down vote up
@Override
public Files as(String alias) {
    return new Files(DSL.name(alias), this);
}
 
Example 14
Source File: CmsCiEventQueue.java    From oneops with Apache License 2.0 4 votes vote down vote up
/**
 * Create an aliased <code>kloopzcm.cms_ci_event_queue</code> table reference
 */
public CmsCiEventQueue(String alias) {
    this(DSL.name(alias), CMS_CI_EVENT_QUEUE);
}
 
Example 15
Source File: Somethingcomposite.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Somethingcomposite as(String alias) {
    return new Somethingcomposite(DSL.name(alias), this);
}
 
Example 16
Source File: Something.java    From vertx-jooq with MIT License 4 votes vote down vote up
/**
 * Create an aliased <code>vertx.something</code> table reference
 */
public Something(String alias) {
    this(DSL.name(alias), SOMETHING);
}
 
Example 17
Source File: BinaryModules.java    From fasten with Apache License 2.0 4 votes vote down vote up
/**
 * Create an aliased <code>public.binary_modules</code> table reference
 */
public BinaryModules(String alias) {
    this(DSL.name(alias), BINARY_MODULES);
}
 
Example 18
Source File: AppUser.java    From springsecuritytotp with MIT License 4 votes vote down vote up
/**
 * Create a <code>APP_USER</code> table reference
 */
public AppUser() {
  this(DSL.name("APP_USER"), null);
}
 
Example 19
Source File: Something.java    From vertx-jooq with MIT License 4 votes vote down vote up
/**
 * Create a <code>VERTX.SOMETHING</code> table reference
 */
public Something() {
    this(DSL.name("SOMETHING"), null);
}
 
Example 20
Source File: CmCiAttributes.java    From oneops with Apache License 2.0 4 votes vote down vote up
/**
 * Create an aliased <code>kloopzcm.cm_ci_attributes</code> table reference
 */
public CmCiAttributes(String alias) {
    this(DSL.name(alias), CM_CI_ATTRIBUTES);
}