Enum AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack
- java.lang.Object
-
- java.lang.Enum<AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack>
-
- com.netflix.spinnaker.clouddriver.appengine.config.AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack>
- Enclosing class:
- AppengineConfigurationProperties.ManagedAccount
public static enum AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack extends java.lang.Enum<AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrackvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALPHA
public static final AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack ALPHA
-
BETA
public static final AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack BETA
-
STABLE
public static final AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack STABLE
-
-
Method Detail
-
values
public static AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack[] 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 (AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack c : AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AppengineConfigurationProperties.ManagedAccount.GcloudReleaseTrack valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-