public enum Type extends Enum<Type>
| Enum Constant and Description |
|---|
APM
Application will be reporting tracing information in APM format.
|
APMAGENT
Will instrument the application using the Hawkular APM Java agent.
|
APMOTAGENT
Will instrument the application using the Hawkular APM Java opentracing agent.
|
ZIPKIN
Application will be reporting tracing information in Zipkin format.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getPropertyFile() |
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type APMAGENT
public static final Type APMOTAGENT
public static final Type APM
public static final Type ZIPKIN
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getPropertyFile()
Copyright © 2015–2017 Red Hat, Inc.. All rights reserved.