Package com.google.container.v1
Enum ReleaseChannel.Channel
- java.lang.Object
-
- java.lang.Enum<ReleaseChannel.Channel>
-
- com.google.container.v1.ReleaseChannel.Channel
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ReleaseChannel.Channel>
- Enclosing class:
- ReleaseChannel
public static enum ReleaseChannel.Channel extends Enum<ReleaseChannel.Channel> implements com.google.protobuf.ProtocolMessageEnum
Possible values for 'channel'.
Protobuf enumgoogle.container.v1.ReleaseChannel.Channel
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RAPID
RAPID channel is offered on an early access basis for customers who want to test new releases.REGULAR
Clusters subscribed to REGULAR receive versions that are considered GA quality.STABLE
Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production.UNRECOGNIZED
UNSPECIFIED
No channel specified.
-
Field Summary
Fields Modifier and Type Field Description static int
RAPID_VALUE
RAPID channel is offered on an early access basis for customers who want to test new releases.static int
REGULAR_VALUE
Clusters subscribed to REGULAR receive versions that are considered GA quality.static int
STABLE_VALUE
Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production.static int
UNSPECIFIED_VALUE
No channel specified.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ReleaseChannel.Channel
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<ReleaseChannel.Channel>
internalGetValueMap()
static ReleaseChannel.Channel
valueOf(int value)
Deprecated.static ReleaseChannel.Channel
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ReleaseChannel.Channel
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReleaseChannel.Channel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final ReleaseChannel.Channel UNSPECIFIED
No channel specified.
UNSPECIFIED = 0;
-
RAPID
public static final ReleaseChannel.Channel RAPID
RAPID channel is offered on an early access basis for customers who want to test new releases. WARNING: Versions available in the RAPID Channel may be subject to unresolved issues with no known workaround and are not subject to any SLAs.
RAPID = 1;
-
REGULAR
public static final ReleaseChannel.Channel REGULAR
Clusters subscribed to REGULAR receive versions that are considered GA quality. REGULAR is intended for production users who want to take advantage of new features.
REGULAR = 2;
-
STABLE
public static final ReleaseChannel.Channel STABLE
Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production.
STABLE = 3;
-
UNRECOGNIZED
public static final ReleaseChannel.Channel UNRECOGNIZED
-
-
Field Detail
-
UNSPECIFIED_VALUE
public static final int UNSPECIFIED_VALUE
No channel specified.
UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
RAPID_VALUE
public static final int RAPID_VALUE
RAPID channel is offered on an early access basis for customers who want to test new releases. WARNING: Versions available in the RAPID Channel may be subject to unresolved issues with no known workaround and are not subject to any SLAs.
RAPID = 1;
- See Also:
- Constant Field Values
-
REGULAR_VALUE
public static final int REGULAR_VALUE
Clusters subscribed to REGULAR receive versions that are considered GA quality. REGULAR is intended for production users who want to take advantage of new features.
REGULAR = 2;
- See Also:
- Constant Field Values
-
STABLE_VALUE
public static final int STABLE_VALUE
Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production.
STABLE = 3;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ReleaseChannel.Channel[] 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 (ReleaseChannel.Channel c : ReleaseChannel.Channel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReleaseChannel.Channel 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 ReleaseChannel.Channel 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 ReleaseChannel.Channel 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<ReleaseChannel.Channel> 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 ReleaseChannel.Channel 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
-
-