public enum ImageType extends Enum<ImageType>
| 枚举常量和说明 |
|---|
BIG_PICTURE |
LARGE_ICON |
SMALL_ICON |
public static final ImageType BIG_PICTURE
public static final ImageType LARGE_ICON
public static final ImageType SMALL_ICON
public static ImageType[] values()
for (ImageType c : ImageType.values()) System.out.println(c);
public static ImageType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int value()
Copyright © 2023. All rights reserved.