Package com.oracle.bmc.datasafe.requests
Enum ListMaskingPolicyReferentialRelationsRequest.RelationType
- java.lang.Object
-
- java.lang.Enum<ListMaskingPolicyReferentialRelationsRequest.RelationType>
-
- com.oracle.bmc.datasafe.requests.ListMaskingPolicyReferentialRelationsRequest.RelationType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ListMaskingPolicyReferentialRelationsRequest.RelationType>
- Enclosing class:
- ListMaskingPolicyReferentialRelationsRequest
public static enum ListMaskingPolicyReferentialRelationsRequest.RelationType extends Enum<ListMaskingPolicyReferentialRelationsRequest.RelationType> implements BmcEnum
A filter to return columns based on their relationship with their parent columns.If set to NONE, it returns the 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 ListMaskingPolicyReferentialRelationsRequest.RelationType
create(String key)
String
getValue()
static ListMaskingPolicyReferentialRelationsRequest.RelationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ListMaskingPolicyReferentialRelationsRequest.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 ListMaskingPolicyReferentialRelationsRequest.RelationType None
-
AppDefined
public static final ListMaskingPolicyReferentialRelationsRequest.RelationType AppDefined
-
DbDefined
public static final ListMaskingPolicyReferentialRelationsRequest.RelationType DbDefined
-
-
Method Detail
-
values
public static ListMaskingPolicyReferentialRelationsRequest.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 (ListMaskingPolicyReferentialRelationsRequest.RelationType c : ListMaskingPolicyReferentialRelationsRequest.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 ListMaskingPolicyReferentialRelationsRequest.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 ListMaskingPolicyReferentialRelationsRequest.RelationType create(String key)
-
-