Enum Service.AgentTechnologyTypeEnum
- java.lang.Object
-
- java.lang.Enum<Service.AgentTechnologyTypeEnum>
-
- de.tsystems.mms.apm.performancesignature.dynatracesaas.rest.model.Service.AgentTechnologyTypeEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<Service.AgentTechnologyTypeEnum>
- Enclosing class:
- Service
public static enum Service.AgentTechnologyTypeEnum extends Enum<Service.AgentTechnologyTypeEnum>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Service.AgentTechnologyTypeEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Service.AgentTechnologyTypeEnum
fromValue(String text)
String
getValue()
String
toString()
static Service.AgentTechnologyTypeEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static Service.AgentTechnologyTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
N_A
public static final Service.AgentTechnologyTypeEnum N_A
-
JAVA
public static final Service.AgentTechnologyTypeEnum JAVA
-
DOTNET
public static final Service.AgentTechnologyTypeEnum DOTNET
-
SDK
public static final Service.AgentTechnologyTypeEnum SDK
-
OS
public static final Service.AgentTechnologyTypeEnum OS
-
APACHE
public static final Service.AgentTechnologyTypeEnum APACHE
-
WSMB
public static final Service.AgentTechnologyTypeEnum WSMB
-
Z
public static final Service.AgentTechnologyTypeEnum Z
-
NET
public static final Service.AgentTechnologyTypeEnum NET
-
IIS
public static final Service.AgentTechnologyTypeEnum IIS
-
PHP
public static final Service.AgentTechnologyTypeEnum PHP
-
NODEJS
public static final Service.AgentTechnologyTypeEnum NODEJS
-
RUBY
public static final Service.AgentTechnologyTypeEnum RUBY
-
NGINX
public static final Service.AgentTechnologyTypeEnum NGINX
-
LOG_ANALYTICS
public static final Service.AgentTechnologyTypeEnum LOG_ANALYTICS
-
VARNISH
public static final Service.AgentTechnologyTypeEnum VARNISH
-
PLUGIN
public static final Service.AgentTechnologyTypeEnum PLUGIN
-
PROCESS
public static final Service.AgentTechnologyTypeEnum PROCESS
-
UPDATER
public static final Service.AgentTechnologyTypeEnum UPDATER
-
GO
public static final Service.AgentTechnologyTypeEnum GO
-
REMOTE_PLUGIN
public static final Service.AgentTechnologyTypeEnum REMOTE_PLUGIN
-
-
Method Detail
-
values
public static Service.AgentTechnologyTypeEnum[] 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 (Service.AgentTechnologyTypeEnum c : Service.AgentTechnologyTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Service.AgentTechnologyTypeEnum 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
-
fromValue
public static Service.AgentTechnologyTypeEnum fromValue(String text)
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toString
in classEnum<Service.AgentTechnologyTypeEnum>
-
-