public static enum StatusDimension.Level extends Enum<StatusDimension.Level>
| Enum Constant and Description |
|---|
ALL_CALLER
对所有主调方维度生效
|
ALL_METHOD
对所有接口生效
|
CALLER_METHOD
指定主调方和接口生效
|
SERVICE
服务级,不指定主调方和接口
|
| Modifier and Type | Method and Description |
|---|---|
static StatusDimension.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusDimension.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusDimension.Level SERVICE
public static final StatusDimension.Level ALL_CALLER
public static final StatusDimension.Level ALL_METHOD
public static final StatusDimension.Level CALLER_METHOD
public static StatusDimension.Level[] values()
for (StatusDimension.Level c : StatusDimension.Level.values()) System.out.println(c);
public static StatusDimension.Level 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 nullCopyright © 2024. All rights reserved.