public enum ShowType extends Enum<ShowType>
public static final ShowType PAGE
public static final ShowType PIE
public static final ShowType BAR
public static final ShowType LINE
public static final ShowType NOTICE
public static final ShowType ALERT
public static final ShowType TEXT
public static final ShowType TREE
public static final ShowType NONE
public static ShowType[] values()
for (ShowType c : ShowType.values()) System.out.println(c);
public static ShowType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.