[jOOQ/jOOQ#12755] DSL.unquotedName() has wrong Javadoc

This commit is contained in:
Lukas Eder 2021-12-17 10:20:16 +01:00
parent 6281e94c70
commit 08114dfb48

View File

@ -11666,8 +11666,10 @@ public class DSL {
* Create a new SQL identifier using an unqualified, quoted name.
* <p>
* This works like {@link #name(String...)}, except that generated
* identifiers will be guaranteed to be quoted in databases that support
* quoted identifiers.
* identifiers will be quoted by default in databases that support quoted
* identifiers, exept if forced to be unquoted using
* {@link Settings#getRenderQuotedNames()} with value
* {@link RenderQuotedNames#NEVER}.
*
* @param unqualifiedName The SQL identifier's unqualified name
* @return A {@link QueryPart} that will render the SQL identifier
@ -11682,8 +11684,10 @@ public class DSL {
* Create a new SQL identifier using a qualified, quoted name.
* <p>
* This works like {@link #name(String...)}, except that generated
* identifiers will be guaranteed to be quoted in databases that support
* quoted identifiers.
* identifiers will be quoted by default in databases that support quoted
* identifiers, exept if forced to be unquoted using
* {@link Settings#getRenderQuotedNames()} with value
* {@link RenderQuotedNames#NEVER}.
*
* @param qualifiedName The SQL identifier's qualified name parts
* @return A {@link QueryPart} that will render the SQL identifier
@ -11698,8 +11702,10 @@ public class DSL {
* Create a new SQL identifier using a qualified, quoted name.
* <p>
* This works like {@link #name(Collection)}, except that generated
* identifiers will be guaranteed to be quoted in databases that support
* quoted identifiers.
* identifiers will be quoted by default in databases that support quoted
* identifiers, exept if forced to be unquoted using
* {@link Settings#getRenderQuotedNames()} with value
* {@link RenderQuotedNames#NEVER}.
*
* @param qualifiedName The SQL identifier's qualified name parts
* @return A {@link QueryPart} that will render the SQL identifier
@ -11713,9 +11719,10 @@ public class DSL {
/**
* Create a new SQL identifier using an unqualified, quoted name.
* <p>
* This works like {@link #name(String...)}, except that generated
* identifiers will be guaranteed to be quoted in databases that support
* quoted identifiers.
* This works like {@link #name(String)}, except that generated
* identifiers will be unquoted by default, except if forced to be quoted
* using {@link Settings#getRenderQuotedNames()} with value
* {@link RenderQuotedNames#ALWAYS}.
*
* @param unqualifiedName The SQL identifier's unqualified name
* @return A {@link QueryPart} that will render the SQL identifier
@ -11730,8 +11737,9 @@ public class DSL {
* Create a new SQL identifier using a qualified, quoted name.
* <p>
* This works like {@link #name(String...)}, except that generated
* identifiers will be guaranteed to be quoted in databases that support
* quoted identifiers.
* identifiers will be unquoted by default, except if forced to be quoted
* using {@link Settings#getRenderQuotedNames()} with value
* {@link RenderQuotedNames#ALWAYS}.
*
* @param qualifiedName The SQL identifier's qualified name parts
* @return A {@link QueryPart} that will render the SQL identifier
@ -11749,8 +11757,9 @@ public class DSL {
* Create a new SQL identifier using a qualified, quoted name.
* <p>
* This works like {@link #name(Collection)}, except that generated
* identifiers will be guaranteed to be quoted in databases that support
* quoted identifiers.
* identifiers will be unquoted by default, except if forced to be quoted
* using {@link Settings#getRenderQuotedNames()} with value
* {@link RenderQuotedNames#ALWAYS}.
*
* @param qualifiedName The SQL identifier's qualified name parts
* @return A {@link QueryPart} that will render the SQL identifier
@ -11764,7 +11773,7 @@ public class DSL {
/**
* Create a new SQL identifier using an unqualified, quoted name.
* <p>
* This works like {@link #name(String...)}, except that generated
* This works like {@link #unquotedName(String)}, except that generated
* identifiers will be guaranteed to be unquoted, even when the relevant
* {@link Settings#getRenderQuotedNames()} flag is set to
* {@link RenderQuotedNames#ALWAYS}.
@ -11781,7 +11790,7 @@ public class DSL {
/**
* Create a new SQL identifier using a qualified, quoted name.
* <p>
* This works like {@link #name(String...)}, except that generated
* This works like {@link #unquotedName(String...)}, except that generated
* identifiers will be guaranteed to be unquoted, even when the relevant
* {@link Settings#getRenderQuotedNames()} flag is set to
* {@link RenderQuotedNames#ALWAYS}.
@ -11801,7 +11810,7 @@ public class DSL {
/**
* Create a new SQL identifier using a qualified, system name.
* <p>
* This works like {@link #name(Collection)}, except that generated
* This works like {@link #unquotedName(Collection)}, except that generated
* identifiers will be guaranteed to be unquoted, even when the relevant
* {@link Settings#getRenderQuotedNames()} flag is set to
* {@link RenderQuotedNames#ALWAYS}.