mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
ObjectView support enum. close #454
This commit is contained in:
@@ -571,6 +571,10 @@ public class ObjectView implements View {
|
||||
appendStringBuilder(buf, format("@%s[%s]", className, new SimpleDateFormat("yyyy-MM-dd HH:mm:ss,SSS").format(obj)));
|
||||
}
|
||||
|
||||
else if (object instanceof Enum<?>) {
|
||||
appendStringBuilder(buf, format("@%s[%s]", className, obj));
|
||||
}
|
||||
|
||||
// 普通Object输出
|
||||
else {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user