public enum PrintType extends Enum<PrintType>
public static final PrintType HTML
public static final PrintType IMAGE
public static final PrintType CLOUD
public static final PrintType NON
public static PrintType[] values()
for (PrintType c : PrintType.values()) System.out.println(c);
public static PrintType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.