Enum Service.ServiceTypeEnum
- java.lang.Object
-
- java.lang.Enum<Service.ServiceTypeEnum>
-
- de.tsystems.mms.apm.performancesignature.dynatracesaas.rest.model.Service.ServiceTypeEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<Service.ServiceTypeEnum>
- Enclosing class:
- Service
public static enum Service.ServiceTypeEnum extends Enum<Service.ServiceTypeEnum>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Service.ServiceTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description AMP
CICS
CUSTOMAPPLICATION
DATABASE
EXTERNAL
MESSAGING
METHOD
MOBILE
PROCESS
QUEUEINTERACTION
QUEUELISTENER
REMOTECALL
RMI
SAASVENDOR
UNKNOWN
WEBREQUEST
WEBSERVICE
WEBSITE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Service.ServiceTypeEnum
fromValue(String text)
String
getValue()
String
toString()
static Service.ServiceTypeEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static Service.ServiceTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Service.ServiceTypeEnum UNKNOWN
-
WEBREQUEST
public static final Service.ServiceTypeEnum WEBREQUEST
-
WEBSERVICE
public static final Service.ServiceTypeEnum WEBSERVICE
-
DATABASE
public static final Service.ServiceTypeEnum DATABASE
-
METHOD
public static final Service.ServiceTypeEnum METHOD
-
WEBSITE
public static final Service.ServiceTypeEnum WEBSITE
-
MESSAGING
public static final Service.ServiceTypeEnum MESSAGING
-
MOBILE
public static final Service.ServiceTypeEnum MOBILE
-
PROCESS
public static final Service.ServiceTypeEnum PROCESS
-
RMI
public static final Service.ServiceTypeEnum RMI
-
EXTERNAL
public static final Service.ServiceTypeEnum EXTERNAL
-
QUEUELISTENER
public static final Service.ServiceTypeEnum QUEUELISTENER
-
QUEUEINTERACTION
public static final Service.ServiceTypeEnum QUEUEINTERACTION
-
REMOTECALL
public static final Service.ServiceTypeEnum REMOTECALL
-
SAASVENDOR
public static final Service.ServiceTypeEnum SAASVENDOR
-
AMP
public static final Service.ServiceTypeEnum AMP
-
CUSTOMAPPLICATION
public static final Service.ServiceTypeEnum CUSTOMAPPLICATION
-
CICS
public static final Service.ServiceTypeEnum CICS
-
-
Method Detail
-
values
public static Service.ServiceTypeEnum[] 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.ServiceTypeEnum c : Service.ServiceTypeEnum.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.ServiceTypeEnum 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.ServiceTypeEnum fromValue(String text)
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toString
in classEnum<Service.ServiceTypeEnum>
-
-