|
Oracle® Database JDBC Java API Reference 11g Release 2 ("11.2.0.0.1-Beta-1") BETA E13995-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object
java.lang.Enum<OracleResultSet.AuthorizationIndicator>
oracle.jdbc.OracleResultSet.AuthorizationIndicator
public static enum OracleResultSet.AuthorizationIndicator
eXtensible Data Security (XDS) authorization indicator.
Enum Constant Summary | |
---|---|
NONE The access to the data is authorized. |
|
UNAUTHORIZED The access to the data isn't authorized (data is hidden). |
|
UNKNOWN Part of the value returned for this column may be hidden. |
Method Summary | |
---|---|
static OracleResultSet.AuthorizationIndicator |
valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static OracleResultSet.AuthorizationIndicator[] |
values() Returns an array containing the constants of this enum type, in the order they are 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 OracleResultSet.AuthorizationIndicator NONE
public static final OracleResultSet.AuthorizationIndicator UNAUTHORIZED
AuthorizationIndicator.UNAUTHORIZED
. If there is a column expression on top of the unauthorized base column(s), the evaluated value will be returned to the application along with the AuthorizationIndicator.UNAUTHORIZED
indicator. Application should examine authorization indicator before interpreting the returned data.public static final OracleResultSet.AuthorizationIndicator UNKNOWN
AuthorizationIndicator.UNKNOWN
will be returned to the application and the returned value can be null or not null depending on how the column expression operates on the underlying column value.Method Detail |
---|
public static OracleResultSet.AuthorizationIndicator[] values()
for (OracleResultSet.AuthorizationIndicator c : OracleResultSet.AuthorizationIndicator.values()) System.out.println(c);
public static OracleResultSet.AuthorizationIndicator 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 namejava.lang.NullPointerException
- if the argument is null
|
Oracle® Database JDBC Java API Reference 11g Release 2 ("11.2.0.0.1-Beta-1") BETA E13995-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |