public enum UploadFileType extends java.lang.Enum<UploadFileType>
| Enum Constant and Description |
|---|
FILE
文件(暂未开放)
|
IMAGE
图片
|
RECORD
语音
|
VIDEO
视频
|
| Modifier and Type | Method and Description |
|---|---|
static UploadFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UploadFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadFileType IMAGE
public static final UploadFileType VIDEO
public static final UploadFileType RECORD
public static final UploadFileType FILE
public static UploadFileType[] values()
for (UploadFileType c : UploadFileType.values()) System.out.println(c);
public static UploadFileType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null