Package com.oracle.bmc.datasafe.requests
Enum ListSensitiveColumnsRequest.RelationType
- java.lang.Object
-
- java.lang.Enum<ListSensitiveColumnsRequest.RelationType>
-
- com.oracle.bmc.datasafe.requests.ListSensitiveColumnsRequest.RelationType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ListSensitiveColumnsRequest.RelationType>
- Enclosing class:
- ListSensitiveColumnsRequest
public static enum ListSensitiveColumnsRequest.RelationType extends Enum<ListSensitiveColumnsRequest.RelationType> implements BmcEnum
A filter to return sensitive columns based on their relationship with their parent columns.If set to NONE, it returns the sensitive columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AppDefined
DbDefined
None
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListSensitiveColumnsRequest.RelationType
create(String key)
String
getValue()
static ListSensitiveColumnsRequest.RelationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ListSensitiveColumnsRequest.RelationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final ListSensitiveColumnsRequest.RelationType None
-
AppDefined
public static final ListSensitiveColumnsRequest.RelationType AppDefined
-
DbDefined
public static final ListSensitiveColumnsRequest.RelationType DbDefined
-
-
Method Detail
-
values
public static ListSensitiveColumnsRequest.RelationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ListSensitiveColumnsRequest.RelationType c : ListSensitiveColumnsRequest.RelationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ListSensitiveColumnsRequest.RelationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static ListSensitiveColumnsRequest.RelationType create(String key)
-
-