Enum SdkComponent
- java.lang.Object
-
- java.lang.Enum<SdkComponent>
-
- com.google.cloud.tools.managedcloudsdk.components.SdkComponent
-
- All Implemented Interfaces:
Serializable
,Comparable<SdkComponent>
public enum SdkComponent extends Enum<SdkComponent>
Components in the Cloud SDK.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static SdkComponent
valueOf(String name)
Returns the enum constant of this type with the specified name.static SdkComponent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALPHA
public static final SdkComponent ALPHA
-
APP_ENGINE_GO
public static final SdkComponent APP_ENGINE_GO
-
APP_ENGINE_JAVA
public static final SdkComponent APP_ENGINE_JAVA
-
APP_ENGINE_PHP
public static final SdkComponent APP_ENGINE_PHP
-
APP_ENGINE_PYTHON
public static final SdkComponent APP_ENGINE_PYTHON
-
BETA
public static final SdkComponent BETA
-
BIGTABLE
public static final SdkComponent BIGTABLE
-
BQ
public static final SdkComponent BQ
-
CBT
public static final SdkComponent CBT
-
CLOUD_DATASTORE_EMULATOR
public static final SdkComponent CLOUD_DATASTORE_EMULATOR
-
CONTAINER_BUILDER_LOCAL
public static final SdkComponent CONTAINER_BUILDER_LOCAL
-
CORE
public static final SdkComponent CORE
-
DATALAB
public static final SdkComponent DATALAB
-
DOCKER_CREDENTIAL_GCR
public static final SdkComponent DOCKER_CREDENTIAL_GCR
-
EMULATOR_REVERSE_PROXY
public static final SdkComponent EMULATOR_REVERSE_PROXY
-
GCD_EMULATOR
public static final SdkComponent GCD_EMULATOR
-
GSUTIL
public static final SdkComponent GSUTIL
-
KUBECTL
public static final SdkComponent KUBECTL
-
PUBSUB_EMULATOR
public static final SdkComponent PUBSUB_EMULATOR
-
MINIKUBE
public static final SdkComponent MINIKUBE
-
SKAFFOLD
public static final SdkComponent SKAFFOLD
-
KPT
public static final SdkComponent KPT
-
GKE_GCLOUD_AUTH_PLUGIN
public static final SdkComponent GKE_GCLOUD_AUTH_PLUGIN
-
-
Method Detail
-
values
public static SdkComponent[] 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 (SdkComponent c : SdkComponent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SdkComponent 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<SdkComponent>
-
-