public static enum ContainerMetadata.ContainerType extends Enum<ContainerMetadata.ContainerType>
| Enum Constant and Description |
|---|
AUDIOBOOK_CONTAINER
Metadata for an audiobook.
|
GENERIC_CONTAINER
Generic template suitable for most media types.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static ContainerMetadata.ContainerType |
typeOf(int value)
Returns the
ContainerMetadata.ContainerType that corresponds to the specified
integer value, or null if nothing corresponds. |
static ContainerMetadata.ContainerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerMetadata.ContainerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerMetadata.ContainerType GENERIC_CONTAINER
ContainerMetadata.public static final ContainerMetadata.ContainerType AUDIOBOOK_CONTAINER
AudiobookContainerMetadata.public static ContainerMetadata.ContainerType[] values()
for (ContainerMetadata.ContainerType c : ContainerMetadata.ContainerType.values()) System.out.println(c);
public static ContainerMetadata.ContainerType 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 getValue()
@Nullable public static ContainerMetadata.ContainerType typeOf(int value)
ContainerMetadata.ContainerType that corresponds to the specified
integer value, or null if nothing corresponds.value - the integer value whose corresponding
ContainerMetadata.ContainerType to find.ContainerMetadata.ContainerType or null.Copyright © 2022. All rights reserved.