public enum GroupAccountingType extends java.lang.Enum<GroupAccountingType>
| Enum Constant and Description |
|---|
DEFAULT
For use in annotations only.
|
DIRECT
Accounts to the first match only.
|
INDIRECT
Accounts also to indirect monitoring groups in the same thread.
|
LOCAL
Accounts only locally, i.e. possible calls due to polymorphism are
ignored.
|
| Modifier and Type | Method and Description |
|---|---|
static GroupAccountingType |
getDefault()
Returns the concrete value for
DEFAULT. |
static GroupAccountingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupAccountingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupAccountingType DEFAULT
getDefault().public static final GroupAccountingType LOCAL
public static final GroupAccountingType DIRECT
public static final GroupAccountingType INDIRECT
public static GroupAccountingType[] values()
for (GroupAccountingType c : GroupAccountingType.values()) System.out.println(c);
public static GroupAccountingType 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 nullpublic static final GroupAccountingType getDefault()
DEFAULT.DIRECT