Package com.google.cloud.gkehub.v1alpha2
Enum MembershipState.Code
- java.lang.Object
-
- java.lang.Enum<MembershipState.Code>
-
- com.google.cloud.gkehub.v1alpha2.MembershipState.Code
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<MembershipState.Code>
- Enclosing class:
- MembershipState
public static enum MembershipState.Code extends Enum<MembershipState.Code> implements com.google.protobuf.ProtocolMessageEnum
Code describes the state of a Membership resource.
Protobuf enumgoogle.cloud.gkehub.v1alpha2.MembershipState.Code
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODE_UNSPECIFIED
The code is not set.CREATING
The cluster is being registered.DELETING
The cluster is being unregistered.READY
The cluster is registered.SERVICE_UPDATING
The Membership is being updated by the Hub Service.UNRECOGNIZED
UPDATING
The Membership is being updated.
-
Field Summary
Fields Modifier and Type Field Description static int
CODE_UNSPECIFIED_VALUE
The code is not set.static int
CREATING_VALUE
The cluster is being registered.static int
DELETING_VALUE
The cluster is being unregistered.static int
READY_VALUE
The cluster is registered.static int
SERVICE_UPDATING_VALUE
The Membership is being updated by the Hub Service.static int
UPDATING_VALUE
The Membership is being updated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static MembershipState.Code
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<MembershipState.Code>
internalGetValueMap()
static MembershipState.Code
valueOf(int value)
Deprecated.static MembershipState.Code
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static MembershipState.Code
valueOf(String name)
Returns the enum constant of this type with the specified name.static MembershipState.Code[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CODE_UNSPECIFIED
public static final MembershipState.Code CODE_UNSPECIFIED
The code is not set.
CODE_UNSPECIFIED = 0;
-
CREATING
public static final MembershipState.Code CREATING
The cluster is being registered.
CREATING = 1;
-
READY
public static final MembershipState.Code READY
The cluster is registered.
READY = 2;
-
DELETING
public static final MembershipState.Code DELETING
The cluster is being unregistered.
DELETING = 3;
-
UPDATING
public static final MembershipState.Code UPDATING
The Membership is being updated.
UPDATING = 4;
-
SERVICE_UPDATING
public static final MembershipState.Code SERVICE_UPDATING
The Membership is being updated by the Hub Service.
SERVICE_UPDATING = 5;
-
UNRECOGNIZED
public static final MembershipState.Code UNRECOGNIZED
-
-
Field Detail
-
CODE_UNSPECIFIED_VALUE
public static final int CODE_UNSPECIFIED_VALUE
The code is not set.
CODE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
CREATING_VALUE
public static final int CREATING_VALUE
The cluster is being registered.
CREATING = 1;
- See Also:
- Constant Field Values
-
READY_VALUE
public static final int READY_VALUE
The cluster is registered.
READY = 2;
- See Also:
- Constant Field Values
-
DELETING_VALUE
public static final int DELETING_VALUE
The cluster is being unregistered.
DELETING = 3;
- See Also:
- Constant Field Values
-
UPDATING_VALUE
public static final int UPDATING_VALUE
The Membership is being updated.
UPDATING = 4;
- See Also:
- Constant Field Values
-
SERVICE_UPDATING_VALUE
public static final int SERVICE_UPDATING_VALUE
The Membership is being updated by the Hub Service.
SERVICE_UPDATING = 5;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static MembershipState.Code[] 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 (MembershipState.Code c : MembershipState.Code.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MembershipState.Code 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 MembershipState.Code 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 MembershipState.Code 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<MembershipState.Code> 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 MembershipState.Code 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
-
-