public enum ImageSize extends Enum<ImageSize>
| 枚举常量和说明 |
|---|
size_1024
图片尺寸:1024x1024
|
size_1024_1792
图片尺寸:1024x1792
|
size_1792_1024
图片尺寸:1792x1024
|
public static final ImageSize size_1024_1792
public static final ImageSize size_1792_1024
public static final ImageSize size_1024
public static ImageSize[] values()
for (ImageSize c : ImageSize.values()) System.out.println(c);
public static ImageSize valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getSize()
Copyright © 2024. All rights reserved.