-
- All Implemented Interfaces:
public final class ColumnPrivilege
Wrapper 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 String
getCatalog()
CatalogSource column: TABLE_CAT final String
getSchema()
SchemaSource column: TABLE_SCHEM final String
getTableName()
Table nameSource column: TABLE_NAME final String
getColumnName()
Column nameSource column: COLUMN_NAME final String
getGrantor()
GrantorSource column: GRANTOR final String
getGrantee()
GranteeSource column: GRANTEE final String
getPrivilege()
PrivilegeSource column: PRIVILEGE final String
isGrantable()
Is grantable, converted to IsGrantableSource column: IS_GRANTABLE Boolean
equals(Object other)
Integer
hashCode()
-
-
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
-
-
-
-