Package com.google.privacy.dlp.v2
Enum Action.ActionCase
- java.lang.Object
-
- java.lang.Enum<Action.ActionCase>
-
- com.google.privacy.dlp.v2.Action.ActionCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<Action.ActionCase>
- Enclosing class:
- Action
public static enum Action.ActionCase extends Enum<Action.ActionCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_NOT_SET
DEIDENTIFY
JOB_NOTIFICATION_EMAILS
PUB_SUB
PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG
PUBLISH_SUMMARY_TO_CSCC
PUBLISH_TO_STACKDRIVER
SAVE_FINDINGS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Action.ActionCase
forNumber(int value)
int
getNumber()
static Action.ActionCase
valueOf(int value)
Deprecated.static Action.ActionCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Action.ActionCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SAVE_FINDINGS
public static final Action.ActionCase SAVE_FINDINGS
-
PUB_SUB
public static final Action.ActionCase PUB_SUB
-
PUBLISH_SUMMARY_TO_CSCC
public static final Action.ActionCase PUBLISH_SUMMARY_TO_CSCC
-
PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG
public static final Action.ActionCase PUBLISH_FINDINGS_TO_CLOUD_DATA_CATALOG
-
DEIDENTIFY
public static final Action.ActionCase DEIDENTIFY
-
JOB_NOTIFICATION_EMAILS
public static final Action.ActionCase JOB_NOTIFICATION_EMAILS
-
PUBLISH_TO_STACKDRIVER
public static final Action.ActionCase PUBLISH_TO_STACKDRIVER
-
ACTION_NOT_SET
public static final Action.ActionCase ACTION_NOT_SET
-
-
Method Detail
-
values
public static Action.ActionCase[] 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 (Action.ActionCase c : Action.ActionCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Action.ActionCase 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
-
valueOf
@Deprecated public static Action.ActionCase valueOf(int value)
Deprecated.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:
value
- 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
-
forNumber
public static Action.ActionCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-