org.jooq
Annotation Type Support


@Target(value={METHOD,FIELD})
@Retention(value=RUNTIME)
public @interface Support

A formal declaration of whether any API element is supported by a given SQLDialect

The annotation is mainly used in three modes:

Future versions of jOOQ may use these annotations for throwing SQLDialectNotSupportedException where appropriate, or preprocessing jOOQ source code in order to mark unsupported API as Deprecated

Author:
Lukas Eder

Optional Element Summary
 SQLDialect[] value
          A SQLDialect array containing all dialects that are supported by the API method annotated with this annotation.
 

value

public abstract SQLDialect[] value
A SQLDialect array containing all dialects that are supported by the API method annotated with this annotation.

Default:
{}


Copyright © 2012. All Rights Reserved.