@Generated public enum DataSecurityMode extends Enum<DataSecurityMode>
| Enum Constant and Description |
|---|
LEGACY_PASSTHROUGH |
LEGACY_SINGLE_USER |
LEGACY_TABLE_ACL |
NONE |
SINGLE_USER |
USER_ISOLATION |
| Modifier and Type | Method and Description |
|---|---|
static DataSecurityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSecurityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSecurityMode LEGACY_PASSTHROUGH
public static final DataSecurityMode LEGACY_SINGLE_USER
public static final DataSecurityMode LEGACY_TABLE_ACL
public static final DataSecurityMode NONE
public static final DataSecurityMode SINGLE_USER
public static final DataSecurityMode USER_ISOLATION
public static DataSecurityMode[] values()
for (DataSecurityMode c : DataSecurityMode.values()) System.out.println(c);
public static DataSecurityMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.