Package com.google.cloud.alloydb.v1alpha
Enum Cluster.ClusterType
- java.lang.Object
-
- java.lang.Enum<Cluster.ClusterType>
-
- com.google.cloud.alloydb.v1alpha.Cluster.ClusterType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Cluster.ClusterType>
- Enclosing class:
- Cluster
public static enum Cluster.ClusterType extends Enum<Cluster.ClusterType> implements com.google.protobuf.ProtocolMessageEnum
Type of Cluster
Protobuf enumgoogle.cloud.alloydb.v1alpha.Cluster.ClusterType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLUSTER_TYPE_UNSPECIFIED
The type of the cluster is unknown.PRIMARY
Primary cluster that support read and write operations.SECONDARY
Secondary cluster that is replicating from another region.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
CLUSTER_TYPE_UNSPECIFIED_VALUE
The type of the cluster is unknown.static int
PRIMARY_VALUE
Primary cluster that support read and write operations.static int
SECONDARY_VALUE
Secondary cluster that is replicating from another region.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Cluster.ClusterType
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<Cluster.ClusterType>
internalGetValueMap()
static Cluster.ClusterType
valueOf(int value)
Deprecated.static Cluster.ClusterType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Cluster.ClusterType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Cluster.ClusterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLUSTER_TYPE_UNSPECIFIED
public static final Cluster.ClusterType CLUSTER_TYPE_UNSPECIFIED
The type of the cluster is unknown.
CLUSTER_TYPE_UNSPECIFIED = 0;
-
PRIMARY
public static final Cluster.ClusterType PRIMARY
Primary cluster that support read and write operations.
PRIMARY = 1;
-
SECONDARY
public static final Cluster.ClusterType SECONDARY
Secondary cluster that is replicating from another region. This only supports read.
SECONDARY = 2;
-
UNRECOGNIZED
public static final Cluster.ClusterType UNRECOGNIZED
-
-
Field Detail
-
CLUSTER_TYPE_UNSPECIFIED_VALUE
public static final int CLUSTER_TYPE_UNSPECIFIED_VALUE
The type of the cluster is unknown.
CLUSTER_TYPE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
PRIMARY_VALUE
public static final int PRIMARY_VALUE
Primary cluster that support read and write operations.
PRIMARY = 1;
- See Also:
- Constant Field Values
-
SECONDARY_VALUE
public static final int SECONDARY_VALUE
Secondary cluster that is replicating from another region. This only supports read.
SECONDARY = 2;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Cluster.ClusterType[] 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 (Cluster.ClusterType c : Cluster.ClusterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Cluster.ClusterType 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
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static Cluster.ClusterType 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 Cluster.ClusterType forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<Cluster.ClusterType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static Cluster.ClusterType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- 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
-
-