Package com.oracle.bmc.datasafe.requests
Enum ListReferentialRelationsRequest.RelationType
- java.lang.Object
-
- java.lang.Enum<ListReferentialRelationsRequest.RelationType>
-
- com.oracle.bmc.datasafe.requests.ListReferentialRelationsRequest.RelationType
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<ListReferentialRelationsRequest.RelationType>
- Enclosing class:
- ListReferentialRelationsRequest
public static enum ListReferentialRelationsRequest.RelationType extends Enum<ListReferentialRelationsRequest.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 AppDefinedDbDefinedNone
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListReferentialRelationsRequest.RelationTypecreate(String key)StringgetValue()static ListReferentialRelationsRequest.RelationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ListReferentialRelationsRequest.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 ListReferentialRelationsRequest.RelationType None
-
AppDefined
public static final ListReferentialRelationsRequest.RelationType AppDefined
-
DbDefined
public static final ListReferentialRelationsRequest.RelationType DbDefined
-
-
Method Detail
-
values
public static ListReferentialRelationsRequest.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 (ListReferentialRelationsRequest.RelationType c : ListReferentialRelationsRequest.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 ListReferentialRelationsRequest.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 ListReferentialRelationsRequest.RelationType create(String key)
-
-