[jOOQ/jOOQ#11061] [jOOQ/jOOQ#11070] [jOOQ/jOOQ#11091] Too many overloads
This commit is contained in:
parent
72c85e4ed7
commit
910f2dd760
@ -14953,42 +14953,6 @@ public class DSL {
|
||||
return new Lower(string);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> lpad(String string, int length, String character) {
|
||||
return new Lpad(Tools.field(string), Tools.field(length), Tools.field(character));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> lpad(String string, int length, Field<String> character) {
|
||||
return new Lpad(Tools.field(string), Tools.field(length), character);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> lpad(String string, Field<? extends Number> length, String character) {
|
||||
return new Lpad(Tools.field(string), length, Tools.field(character));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> lpad(String string, Field<? extends Number> length, Field<String> character) {
|
||||
return new Lpad(Tools.field(string), length, character);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@ -15025,24 +14989,6 @@ public class DSL {
|
||||
return new Lpad(string, length, character);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> lpad(String string, int length) {
|
||||
return new Lpad(Tools.field(string), Tools.field(length));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> lpad(String string, Field<? extends Number> length) {
|
||||
return new Lpad(Tools.field(string), length);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>LPAD</code> function.
|
||||
*/
|
||||
@ -15259,42 +15205,6 @@ public class DSL {
|
||||
return new Repeat(string, count);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> replace(String string, String search, String replace) {
|
||||
return new Replace(Tools.field(string), Tools.field(search), Tools.field(replace));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> replace(String string, String search, Field<String> replace) {
|
||||
return new Replace(Tools.field(string), Tools.field(search), replace);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> replace(String string, Field<String> search, String replace) {
|
||||
return new Replace(Tools.field(string), search, Tools.field(replace));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> replace(String string, Field<String> search, Field<String> replace) {
|
||||
return new Replace(Tools.field(string), search, replace);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@ -15331,24 +15241,6 @@ public class DSL {
|
||||
return new Replace(string, search, replace);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> replace(String string, String search) {
|
||||
return new Replace(Tools.field(string), Tools.field(search));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> replace(String string, Field<String> search) {
|
||||
return new Replace(Tools.field(string), search);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>REPLACE</code> function.
|
||||
*/
|
||||
@ -15421,42 +15313,6 @@ public class DSL {
|
||||
return new Right(string, length);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> rpad(String string, int length, String character) {
|
||||
return new Rpad(Tools.field(string), Tools.field(length), Tools.field(character));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> rpad(String string, int length, Field<String> character) {
|
||||
return new Rpad(Tools.field(string), Tools.field(length), character);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> rpad(String string, Field<? extends Number> length, String character) {
|
||||
return new Rpad(Tools.field(string), length, Tools.field(character));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> rpad(String string, Field<? extends Number> length, Field<String> character) {
|
||||
return new Rpad(Tools.field(string), length, character);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@ -15493,24 +15349,6 @@ public class DSL {
|
||||
return new Rpad(string, length, character);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> rpad(String string, int length) {
|
||||
return new Rpad(Tools.field(string), Tools.field(length));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ CUBRID, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
|
||||
public static Field<String> rpad(String string, Field<? extends Number> length) {
|
||||
return new Rpad(Tools.field(string), length);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>RPAD</code> function.
|
||||
*/
|
||||
@ -15631,42 +15469,6 @@ public class DSL {
|
||||
return new Space(count);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
public static Field<String> substring(String string, int startingPosition, int length) {
|
||||
return new Substring(Tools.field(string), Tools.field(startingPosition), Tools.field(length));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
public static Field<String> substring(String string, int startingPosition, Field<? extends Number> length) {
|
||||
return new Substring(Tools.field(string), Tools.field(startingPosition), length);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
public static Field<String> substring(String string, Field<? extends Number> startingPosition, int length) {
|
||||
return new Substring(Tools.field(string), startingPosition, Tools.field(length));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
public static Field<String> substring(String string, Field<? extends Number> startingPosition, Field<? extends Number> length) {
|
||||
return new Substring(Tools.field(string), startingPosition, length);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@ -15703,24 +15505,6 @@ public class DSL {
|
||||
return new Substring(string, startingPosition, length);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
public static Field<String> substring(String string, int startingPosition) {
|
||||
return new Substring(Tools.field(string), Tools.field(startingPosition));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support
|
||||
public static Field<String> substring(String string, Field<? extends Number> startingPosition) {
|
||||
return new Substring(Tools.field(string), startingPosition);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>SUBSTRING</code> function.
|
||||
*/
|
||||
@ -15739,42 +15523,6 @@ public class DSL {
|
||||
return new Substring(string, startingPosition);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>TRANSLATE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
public static Field<String> translate(String string, String from, String to) {
|
||||
return new Translate(Tools.field(string), Tools.field(from), Tools.field(to));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>TRANSLATE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
public static Field<String> translate(String string, String from, Field<String> to) {
|
||||
return new Translate(Tools.field(string), Tools.field(from), to);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>TRANSLATE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
public static Field<String> translate(String string, Field<String> from, String to) {
|
||||
return new Translate(Tools.field(string), from, Tools.field(to));
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>TRANSLATE</code> function.
|
||||
*/
|
||||
@NotNull
|
||||
@Support({ H2, HSQLDB, POSTGRES })
|
||||
public static Field<String> translate(String string, Field<String> from, Field<String> to) {
|
||||
return new Translate(Tools.field(string), from, to);
|
||||
}
|
||||
|
||||
/**
|
||||
* The <code>TRANSLATE</code> function.
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user