Uses of Interface
org.jooq.Privilege
-
Packages that use Privilege Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of Privilege in org.jooq
Methods in org.jooq with parameters of type Privilege Modifier and Type Method Description @NotNull GrantOnStep
DSLContext. grant(Privilege privileges)
TheGRANT
statement.@NotNull GrantOnStep
DSLContext. grant(Privilege... privileges)
TheGRANT
statement.@NotNull RevokeOnStep
DSLContext. revoke(Privilege privileges)
TheREVOKE
statement.@NotNull RevokeOnStep
DSLContext. revoke(Privilege... privileges)
TheREVOKE
statement.@NotNull RevokeOnStep
DSLContext. revokeGrantOptionFor(Privilege privileges)
TheREVOKE GRANT OPTION FOR
statement.@NotNull RevokeOnStep
DSLContext. revokeGrantOptionFor(Privilege... privileges)
TheREVOKE GRANT OPTION FOR
statement.Method parameters in org.jooq with type arguments of type Privilege Modifier and Type Method Description @NotNull GrantOnStep
DSLContext. grant(Collection<? extends Privilege> privileges)
TheGRANT
statement.@NotNull RevokeOnStep
DSLContext. revoke(Collection<? extends Privilege> privileges)
TheREVOKE
statement.@NotNull RevokeOnStep
DSLContext. revokeGrantOptionFor(Collection<? extends Privilege> privileges)
TheREVOKE GRANT OPTION FOR
statement. -
Uses of Privilege in org.jooq.impl
Methods in org.jooq.impl that return Privilege Modifier and Type Method Description static @NotNull Privilege
DSL. privilege(String privilege)
Create a new privilege reference.Methods in org.jooq.impl with parameters of type Privilege Modifier and Type Method Description GrantOnStep
DefaultDSLContext. grant(Privilege privileges)
GrantOnStep
DefaultDSLContext. grant(Privilege... privileges)
static GrantOnStep
DSL. grant(Privilege privileges)
TheGRANT
statement.static GrantOnStep
DSL. grant(Privilege... privileges)
TheGRANT
statement.RevokeOnStep
DefaultDSLContext. revoke(Privilege privileges)
RevokeOnStep
DefaultDSLContext. revoke(Privilege... privileges)
static RevokeOnStep
DSL. revoke(Privilege privileges)
TheREVOKE
statement.static RevokeOnStep
DSL. revoke(Privilege... privileges)
TheREVOKE
statement.RevokeOnStep
DefaultDSLContext. revokeGrantOptionFor(Privilege privileges)
RevokeOnStep
DefaultDSLContext. revokeGrantOptionFor(Privilege... privileges)
static RevokeOnStep
DSL. revokeGrantOptionFor(Privilege privileges)
TheREVOKE GRANT OPTION FOR
statement.static RevokeOnStep
DSL. revokeGrantOptionFor(Privilege... privileges)
TheREVOKE GRANT OPTION FOR
statement.Method parameters in org.jooq.impl with type arguments of type Privilege Modifier and Type Method Description GrantOnStep
DefaultDSLContext. grant(Collection<? extends Privilege> privileges)
static GrantOnStep
DSL. grant(Collection<? extends Privilege> privileges)
TheGRANT
statement.RevokeOnStep
DefaultDSLContext. revoke(Collection<? extends Privilege> privileges)
static RevokeOnStep
DSL. revoke(Collection<? extends Privilege> privileges)
TheREVOKE
statement.RevokeOnStep
DefaultDSLContext. revokeGrantOptionFor(Collection<? extends Privilege> privileges)
static RevokeOnStep
DSL. revokeGrantOptionFor(Collection<? extends Privilege> privileges)
TheREVOKE GRANT OPTION FOR
statement.
-