Enum TelemetryService.TELEMETRY_SERVER_DEPLOYMENT
- java.lang.Object
-
- java.lang.Enum<TelemetryService.TELEMETRY_SERVER_DEPLOYMENT>
-
- net.snowflake.client.jdbc.telemetryOOB.TelemetryService.TELEMETRY_SERVER_DEPLOYMENT
-
- All Implemented Interfaces:
Serializable,Comparable<TelemetryService.TELEMETRY_SERVER_DEPLOYMENT>
- Enclosing class:
- TelemetryService
public static enum TelemetryService.TELEMETRY_SERVER_DEPLOYMENT extends Enum<TelemetryService.TELEMETRY_SERVER_DEPLOYMENT>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApiKey()StringgetName()StringgetURL()voidsetURL(String url)static TelemetryService.TELEMETRY_SERVER_DEPLOYMENTvalueOf(String name)Returns the enum constant of this type with the specified name.static TelemetryService.TELEMETRY_SERVER_DEPLOYMENT[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEV
public static final TelemetryService.TELEMETRY_SERVER_DEPLOYMENT DEV
-
REG
public static final TelemetryService.TELEMETRY_SERVER_DEPLOYMENT REG
-
QA1
public static final TelemetryService.TELEMETRY_SERVER_DEPLOYMENT QA1
-
PREPROD3
public static final TelemetryService.TELEMETRY_SERVER_DEPLOYMENT PREPROD3
-
PROD
public static final TelemetryService.TELEMETRY_SERVER_DEPLOYMENT PROD
-
-
Method Detail
-
values
public static TelemetryService.TELEMETRY_SERVER_DEPLOYMENT[] 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 (TelemetryService.TELEMETRY_SERVER_DEPLOYMENT c : TelemetryService.TELEMETRY_SERVER_DEPLOYMENT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TelemetryService.TELEMETRY_SERVER_DEPLOYMENT 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
-
getURL
public String getURL()
-
getName
public String getName()
-
getApiKey
public String getApiKey()
-
setURL
public void setURL(String url)
-
-