enum ServiceType extends java.lang.Enum<ServiceType>
| Enum Constant and Description |
|---|
FLURRY |
GOOGLE_ANALYTICS |
GRAPHITE |
HOCKEYAPP |
LOGENTRIES |
MIXPANEL |
PAGERDUTY |
PAPERTRAIL |
| Modifier and Type | Method and Description |
|---|---|
static ServiceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceType PAGERDUTY
public static final ServiceType HOCKEYAPP
public static final ServiceType PAPERTRAIL
public static final ServiceType MIXPANEL
public static final ServiceType GOOGLE_ANALYTICS
public static final ServiceType FLURRY
public static final ServiceType LOGENTRIES
public static final ServiceType GRAPHITE
public static ServiceType[] values()
for (ServiceType c : ServiceType.values()) System.out.println(c);
public static ServiceType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null