public enum Propagation extends java.lang.Enum<Propagation>
| Enum Constant and Description | 
|---|
SKIP
Skip monitoring for single invocation of annotated element. 
 | 
SUPPORTS
Support monitoring by application log. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
private java.lang.String | 
value
Propagation value. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
value()
Returns propagation value. 
 | 
static Propagation | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Propagation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
for (Propagation c : Propagation.values()) System.out.println(c);
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