|
Oracle JDBC API Reference 11g Release 2 ("11.2.0.3.0") |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<OracleResultSetMetaData.SecurityAttribute> oracle.jdbc.OracleResultSetMetaData.SecurityAttribute
public static enum OracleResultSetMetaData.SecurityAttribute
eXtensible Data Security (XDS) attribute.
Enum Constant Summary | |
---|---|
ENABLED
Column Security policy is enabled for the column. |
|
NONE
No XDS policy for the column or the policy is not enabled. |
|
UNKNOWN
The Column Security (XDS) policy for this column is unknown. |
Method Summary | |
---|---|
static OracleResultSetMetaData.SecurityAttribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OracleResultSetMetaData.SecurityAttribute[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OracleResultSetMetaData.SecurityAttribute NONE
public static final OracleResultSetMetaData.SecurityAttribute ENABLED
ResultSet
could be marked
as unauthorized. If the value is unauthorized, the NULL
value is returned.
public static final OracleResultSetMetaData.SecurityAttribute UNKNOWN
When the column is for example the union of column which has
security attributes and a column which hasn't:
select C1 || C2 from mytable;
ResultSet
the value could be non-null
although the C1 part is null because it's unauthorized.
Method Detail |
---|
public static final OracleResultSetMetaData.SecurityAttribute[] values()
for(OracleResultSetMetaData.SecurityAttribute c : OracleResultSetMetaData.SecurityAttribute.values()) System.out.println(c);
public static OracleResultSetMetaData.SecurityAttribute valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
Oracle JDBC API Reference 11g Release 2 ("11.2.0.3.0") |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |