Package com.google.cloud.clouddms.v1
Enum DatabaseEntity.EntityBodyCase
- java.lang.Object
-
- java.lang.Enum<DatabaseEntity.EntityBodyCase>
-
- com.google.cloud.clouddms.v1.DatabaseEntity.EntityBodyCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<DatabaseEntity.EntityBodyCase>
- Enclosing class:
- DatabaseEntity
public static enum DatabaseEntity.EntityBodyCase extends Enum<DatabaseEntity.EntityBodyCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATABASE
DATABASE_FUNCTION
DATABASE_PACKAGE
ENTITYBODY_NOT_SET
MATERIALIZED_VIEW
SCHEMA
SEQUENCE
STORED_PROCEDURE
SYNONYM
TABLE
UDT
VIEW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DatabaseEntity.EntityBodyCase
forNumber(int value)
int
getNumber()
static DatabaseEntity.EntityBodyCase
valueOf(int value)
Deprecated.static DatabaseEntity.EntityBodyCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static DatabaseEntity.EntityBodyCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATABASE
public static final DatabaseEntity.EntityBodyCase DATABASE
-
SCHEMA
public static final DatabaseEntity.EntityBodyCase SCHEMA
-
TABLE
public static final DatabaseEntity.EntityBodyCase TABLE
-
VIEW
public static final DatabaseEntity.EntityBodyCase VIEW
-
SEQUENCE
public static final DatabaseEntity.EntityBodyCase SEQUENCE
-
STORED_PROCEDURE
public static final DatabaseEntity.EntityBodyCase STORED_PROCEDURE
-
DATABASE_FUNCTION
public static final DatabaseEntity.EntityBodyCase DATABASE_FUNCTION
-
SYNONYM
public static final DatabaseEntity.EntityBodyCase SYNONYM
-
DATABASE_PACKAGE
public static final DatabaseEntity.EntityBodyCase DATABASE_PACKAGE
-
UDT
public static final DatabaseEntity.EntityBodyCase UDT
-
MATERIALIZED_VIEW
public static final DatabaseEntity.EntityBodyCase MATERIALIZED_VIEW
-
ENTITYBODY_NOT_SET
public static final DatabaseEntity.EntityBodyCase ENTITYBODY_NOT_SET
-
-
Method Detail
-
values
public static DatabaseEntity.EntityBodyCase[] 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 (DatabaseEntity.EntityBodyCase c : DatabaseEntity.EntityBodyCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DatabaseEntity.EntityBodyCase 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 DatabaseEntity.EntityBodyCase 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 DatabaseEntity.EntityBodyCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-