Enum MonitorConfiguration.ConfigType
- java.lang.Object
-
- java.lang.Enum<MonitorConfiguration.ConfigType>
-
- com.oracle.bmc.apmsynthetics.model.MonitorConfiguration.ConfigType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<MonitorConfiguration.ConfigType>
- Enclosing class:
- MonitorConfiguration
public static enum MonitorConfiguration.ConfigType extends Enum<MonitorConfiguration.ConfigType> implements BmcEnum
Type of configuration.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BrowserConfig
DnssecConfig
DnsServerConfig
DnsTraceConfig
FtpConfig
NetworkConfig
RestConfig
ScriptedBrowserConfig
ScriptedRestConfig
SqlConfig
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MonitorConfiguration.ConfigType
create(String key)
String
getValue()
static MonitorConfiguration.ConfigType
valueOf(String name)
Returns the enum constant of this type with the specified name.static MonitorConfiguration.ConfigType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BrowserConfig
public static final MonitorConfiguration.ConfigType BrowserConfig
-
ScriptedBrowserConfig
public static final MonitorConfiguration.ConfigType ScriptedBrowserConfig
-
RestConfig
public static final MonitorConfiguration.ConfigType RestConfig
-
ScriptedRestConfig
public static final MonitorConfiguration.ConfigType ScriptedRestConfig
-
NetworkConfig
public static final MonitorConfiguration.ConfigType NetworkConfig
-
DnsServerConfig
public static final MonitorConfiguration.ConfigType DnsServerConfig
-
DnsTraceConfig
public static final MonitorConfiguration.ConfigType DnsTraceConfig
-
DnssecConfig
public static final MonitorConfiguration.ConfigType DnssecConfig
-
FtpConfig
public static final MonitorConfiguration.ConfigType FtpConfig
-
SqlConfig
public static final MonitorConfiguration.ConfigType SqlConfig
-
UnknownEnumValue
public static final MonitorConfiguration.ConfigType UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static MonitorConfiguration.ConfigType[] 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 (MonitorConfiguration.ConfigType c : MonitorConfiguration.ConfigType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MonitorConfiguration.ConfigType 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
-
create
public static MonitorConfiguration.ConfigType create(String key)
-
-