-
- All Implemented Interfaces:
public final class ColumnPrivilegeWrapper for results of getColumnPrivileges method. Used from Column.getColumnPrivileges
-
-
Constructor Summary
Constructors Constructor Description ColumnPrivilege(ResultSet rs)
-
Method Summary
Modifier and Type Method Description final StringgetCatalog()CatalogSource column: TABLE_CAT final StringgetSchema()SchemaSource column: TABLE_SCHEM final StringgetTableName()Table nameSource column: TABLE_NAME final StringgetColumnName()Column nameSource column: COLUMN_NAME final StringgetGrantor()GrantorSource column: GRANTOR final StringgetGrantee()GranteeSource column: GRANTEE final StringgetPrivilege()PrivilegeSource column: PRIVILEGE final StringisGrantable()Is grantable, converted to IsGrantableSource column: IS_GRANTABLE Booleanequals(Object other)IntegerhashCode()-
-
Constructor Detail
-
ColumnPrivilege
ColumnPrivilege(ResultSet rs)
-
-
Method Detail
-
getCatalog
final String getCatalog()
Catalog
Source column: TABLE_CAT
-
getTableName
final String getTableName()
Table name
Source column: TABLE_NAME
-
getColumnName
final String getColumnName()
Column name
Source column: COLUMN_NAME
-
getGrantor
final String getGrantor()
Grantor
Source column: GRANTOR
-
getGrantee
final String getGrantee()
Grantee
Source column: GRANTEE
-
getPrivilege
final String getPrivilege()
Privilege
Source column: PRIVILEGE
-
isGrantable
final String isGrantable()
Is grantable, converted to IsGrantable
Source column: IS_GRANTABLE
-
-
-
-