Interface LightIdService
-
- All Implemented Interfaces:
public interface LightIdService- Since:
2019-05-30
trydofor
-
-
Method Summary
Modifier and Type Method Description intgeBlockId()Get the default BlockId longgetId(@NotNull() String name)Get id by name, may be case-insensitive, all lowercase by default. longgetId(@NotNull() LightIdAware table, int block)Get id by Jooq table name and block. longgetId(@NotNull() LightIdAware table)Get id by Jooq table name. abstract longgetId(@NotNull() String name, int block)Get id by name and block, may be case-insensitive, all lowercase by default. -
-
Method Detail
-
geBlockId
int geBlockId()
Get the default BlockId
-
getId
long getId(@NotNull() String name)
Get id by name, may be case-insensitive, all lowercase by default.
-
getId
long getId(@NotNull() LightIdAware table, int block)
Get id by Jooq table name and block. e.g. removing the `Table` suffix and name it in lowercase_lowercase.
-
getId
long getId(@NotNull() LightIdAware table)
Get id by Jooq table name. e.g. removing the `Table` suffix and name it in lowercase_lowercase.
-
-
-
-