Enum ReleaseChannel.Channel

    • Enum Constant Detail

      • 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;
    • 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 name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.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 name
        NullPointerException - 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 interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.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 name
        NullPointerException - if the argument is null