Package com.naver.ads.video
Enum VideoAdMimeType
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum VideoAdMimeType extends Enum<VideoAdMimeType>
Defines the mime and delivery type of video ads.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classVideoAdMimeType.Companion
-
Field Summary
Fields Modifier and Type Field Description private final StringmimeTypeprivate final Deliverydeliveryprivate final EnumEntries<VideoAdMimeType>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description STREAMING_M3U8STREAMING_VND_APPLE_MPEGURLPROGRESSIVE_MP4
-
Method Summary
Modifier and Type Method Description final VideoAdMimeTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<VideoAdMimeType>values()Returns an array containing the constants of this enum type, in the order they're declared. final StringgetMimeType()the mime type. final DeliverygetDelivery()the delivery type. final EnumEntries<VideoAdMimeType>getEntries()Defines the mime and delivery type of video ads. -
-
Method Detail
-
valueOf
final VideoAdMimeType valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<VideoAdMimeType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getMimeType
final String getMimeType()
the mime type.
-
getDelivery
final Delivery getDelivery()
the delivery type.
-
getEntries
final EnumEntries<VideoAdMimeType> getEntries()
Defines the mime and delivery type of video ads.
-
-
-
-