public enum MediaFileType extends Enum<MediaFileType> implements HasName
| Enum Constant and Description |
|---|
NOTIFICATION_EMAIL_TEMPLATE
User template for format of exception notification emails.
|
TEXT_TEMPLATE
User template for format of notification web requests.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
WAV
.wav file (sound file).
|
WEB_REQUEST_TEMPLATE
User template for format of notification web requests.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getName() |
static MediaFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaFileType UNKNOWN
public static final MediaFileType WAV
public static final MediaFileType NOTIFICATION_EMAIL_TEMPLATE
public static final MediaFileType WEB_REQUEST_TEMPLATE
public static final MediaFileType TEXT_TEMPLATE
public static MediaFileType[] values()
for (MediaFileType c : MediaFileType.values()) System.out.println(c);
public static MediaFileType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getCode()
Copyright © 2023. All rights reserved.