Package com.google.cloud.dataplex.v1
Enum Action.DetailsCase
- java.lang.Object
-
- java.lang.Enum<Action.DetailsCase>
-
- com.google.cloud.dataplex.v1.Action.DetailsCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<Action.DetailsCase>
- Enclosing class:
- Action
public static enum Action.DetailsCase extends Enum<Action.DetailsCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DETAILS_NOT_SET
FAILED_SECURITY_POLICY_APPLY
INCOMPATIBLE_DATA_SCHEMA
INVALID_DATA_FORMAT
INVALID_DATA_ORGANIZATION
INVALID_DATA_PARTITION
MISSING_DATA
MISSING_RESOURCE
UNAUTHORIZED_RESOURCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Action.DetailsCase
forNumber(int value)
int
getNumber()
static Action.DetailsCase
valueOf(int value)
Deprecated.static Action.DetailsCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Action.DetailsCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID_DATA_FORMAT
public static final Action.DetailsCase INVALID_DATA_FORMAT
-
INCOMPATIBLE_DATA_SCHEMA
public static final Action.DetailsCase INCOMPATIBLE_DATA_SCHEMA
-
INVALID_DATA_PARTITION
public static final Action.DetailsCase INVALID_DATA_PARTITION
-
MISSING_DATA
public static final Action.DetailsCase MISSING_DATA
-
MISSING_RESOURCE
public static final Action.DetailsCase MISSING_RESOURCE
-
UNAUTHORIZED_RESOURCE
public static final Action.DetailsCase UNAUTHORIZED_RESOURCE
-
FAILED_SECURITY_POLICY_APPLY
public static final Action.DetailsCase FAILED_SECURITY_POLICY_APPLY
-
INVALID_DATA_ORGANIZATION
public static final Action.DetailsCase INVALID_DATA_ORGANIZATION
-
DETAILS_NOT_SET
public static final Action.DetailsCase DETAILS_NOT_SET
-
-
Method Detail
-
values
public static Action.DetailsCase[] 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.DetailsCase c : Action.DetailsCase.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.DetailsCase 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.DetailsCase 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.DetailsCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-