java.io.Serializable
, java.lang.Comparable<SQLServerStatementColumnEncryptionSetting>
public enum SQLServerStatementColumnEncryptionSetting extends java.lang.Enum<SQLServerStatementColumnEncryptionSetting>
Enum Constant | Description |
---|---|
Disabled |
Disables TCE for the command.Overrides the connection level setting for this command.
|
Enabled |
Enables TCE for the command.
|
ResultSetOnly |
Parameters will not be encrypted, only the ResultSet will be decrypted.
|
UseConnectionSetting |
if "Column Encryption Setting=Enabled" in the connection string, use Enabled.
|
Modifier and Type | Method | Description |
---|---|---|
static SQLServerStatementColumnEncryptionSetting |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SQLServerStatementColumnEncryptionSetting[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLServerStatementColumnEncryptionSetting UseConnectionSetting
public static final SQLServerStatementColumnEncryptionSetting Enabled
public static final SQLServerStatementColumnEncryptionSetting ResultSetOnly
public static final SQLServerStatementColumnEncryptionSetting Disabled
public static SQLServerStatementColumnEncryptionSetting[] values()
for (SQLServerStatementColumnEncryptionSetting c : SQLServerStatementColumnEncryptionSetting.values()) System.out.println(c);
public static SQLServerStatementColumnEncryptionSetting 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 nullCopyright © 2018 Microsoft Corporation. All rights reserved.