All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.rocketmq.shaded.com.google.api.LaunchStage Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/api/launch_stage.proto

package org.apache.rocketmq.shaded.com.google.api;

/**
 *
 *
 * 
 * The launch stage as defined by [Google Cloud Platform
 * Launch Stages](http://cloud.google.com/terms/launch-stages).
 * 
* * Protobuf enum {@code google.api.LaunchStage} */ public enum LaunchStage implements org.apache.rocketmq.shaded.com.google.protobuf.ProtocolMessageEnum { /** * * *
   * Do not use this default value.
   * 
* * LAUNCH_STAGE_UNSPECIFIED = 0; */ LAUNCH_STAGE_UNSPECIFIED(0), /** * * *
   * The feature is not yet implemented. Users can not use it.
   * 
* * UNIMPLEMENTED = 6; */ UNIMPLEMENTED(6), /** * * *
   * Prelaunch features are hidden from users and are only visible internally.
   * 
* * PRELAUNCH = 7; */ PRELAUNCH(7), /** * * *
   * Early Access features are limited to a closed group of testers. To use
   * these features, you must sign up in advance and sign a Trusted Tester
   * agreement (which includes confidentiality provisions). These features may
   * be unstable, changed in backward-incompatible ways, and are not
   * guaranteed to be released.
   * 
* * EARLY_ACCESS = 1; */ EARLY_ACCESS(1), /** * * *
   * Alpha is a limited availability test for releases before they are cleared
   * for widespread use. By Alpha, all significant design issues are resolved
   * and we are in the process of verifying functionality. Alpha customers
   * need to apply for access, agree to applicable terms, and have their
   * projects allowlisted. Alpha releases don’t have to be feature complete,
   * no SLAs are provided, and there are no technical support obligations, but
   * they will be far enough along that customers can actually use them in
   * test environments or for limited-use tests -- just like they would in
   * normal production cases.
   * 
* * ALPHA = 2; */ ALPHA(2), /** * * *
   * Beta is the point at which we are ready to open a release for any
   * customer to use. There are no SLA or technical support obligations in a
   * Beta release. Products will be complete from a feature perspective, but
   * may have some open outstanding issues. Beta releases are suitable for
   * limited production use cases.
   * 
* * BETA = 3; */ BETA(3), /** * * *
   * GA features are open to all developers and are considered stable and
   * fully qualified for production use.
   * 
* * GA = 4; */ GA(4), /** * * *
   * Deprecated features are scheduled to be shut down and removed. For more
   * information, see the “Deprecation Policy” section of our [Terms of
   * Service](https://cloud.google.com/terms/)
   * and the [Google Cloud Platform Subject to the Deprecation
   * Policy](https://cloud.google.com/terms/deprecation) documentation.
   * 
* * DEPRECATED = 5; */ DEPRECATED(5), UNRECOGNIZED(-1), ; /** * * *
   * Do not use this default value.
   * 
* * LAUNCH_STAGE_UNSPECIFIED = 0; */ public static final int LAUNCH_STAGE_UNSPECIFIED_VALUE = 0; /** * * *
   * The feature is not yet implemented. Users can not use it.
   * 
* * UNIMPLEMENTED = 6; */ public static final int UNIMPLEMENTED_VALUE = 6; /** * * *
   * Prelaunch features are hidden from users and are only visible internally.
   * 
* * PRELAUNCH = 7; */ public static final int PRELAUNCH_VALUE = 7; /** * * *
   * Early Access features are limited to a closed group of testers. To use
   * these features, you must sign up in advance and sign a Trusted Tester
   * agreement (which includes confidentiality provisions). These features may
   * be unstable, changed in backward-incompatible ways, and are not
   * guaranteed to be released.
   * 
* * EARLY_ACCESS = 1; */ public static final int EARLY_ACCESS_VALUE = 1; /** * * *
   * Alpha is a limited availability test for releases before they are cleared
   * for widespread use. By Alpha, all significant design issues are resolved
   * and we are in the process of verifying functionality. Alpha customers
   * need to apply for access, agree to applicable terms, and have their
   * projects allowlisted. Alpha releases don’t have to be feature complete,
   * no SLAs are provided, and there are no technical support obligations, but
   * they will be far enough along that customers can actually use them in
   * test environments or for limited-use tests -- just like they would in
   * normal production cases.
   * 
* * ALPHA = 2; */ public static final int ALPHA_VALUE = 2; /** * * *
   * Beta is the point at which we are ready to open a release for any
   * customer to use. There are no SLA or technical support obligations in a
   * Beta release. Products will be complete from a feature perspective, but
   * may have some open outstanding issues. Beta releases are suitable for
   * limited production use cases.
   * 
* * BETA = 3; */ public static final int BETA_VALUE = 3; /** * * *
   * GA features are open to all developers and are considered stable and
   * fully qualified for production use.
   * 
* * GA = 4; */ public static final int GA_VALUE = 4; /** * * *
   * Deprecated features are scheduled to be shut down and removed. For more
   * information, see the “Deprecation Policy” section of our [Terms of
   * Service](https://cloud.google.com/terms/)
   * and the [Google Cloud Platform Subject to the Deprecation
   * Policy](https://cloud.google.com/terms/deprecation) documentation.
   * 
* * DEPRECATED = 5; */ public static final int DEPRECATED_VALUE = 5; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static LaunchStage valueOf(int value) { return forNumber(value); } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. */ public static LaunchStage forNumber(int value) { switch (value) { case 0: return LAUNCH_STAGE_UNSPECIFIED; case 6: return UNIMPLEMENTED; case 7: return PRELAUNCH; case 1: return EARLY_ACCESS; case 2: return ALPHA; case 3: return BETA; case 4: return GA; case 5: return DEPRECATED; default: return null; } } public static org.apache.rocketmq.shaded.com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final org.apache.rocketmq.shaded.com.google.protobuf.Internal.EnumLiteMap internalValueMap = new org.apache.rocketmq.shaded.com.google.protobuf.Internal.EnumLiteMap() { public LaunchStage findValueByNumber(int number) { return LaunchStage.forNumber(number); } }; public final org.apache.rocketmq.shaded.com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalStateException( "Can't get the descriptor of an unrecognized enum value."); } return getDescriptor().getValues().get(ordinal()); } public final org.apache.rocketmq.shaded.com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final org.apache.rocketmq.shaded.com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return org.apache.rocketmq.shaded.com.google.api.LaunchStageProto.getDescriptor().getEnumTypes().get(0); } private static final LaunchStage[] VALUES = values(); public static LaunchStage valueOf(org.apache.rocketmq.shaded.com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private LaunchStage(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:google.api.LaunchStage) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy