public enum ContentBlockType extends Enum<ContentBlockType>
| Enum Constant and Description |
|---|
AUDIO |
HEADING |
HTML |
IIIF_PRESENTATION |
IMAGE |
ORDERED_LIST |
UNORDERED_LIST |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
static ContentBlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentBlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentBlockType HTML
public static final ContentBlockType UNORDERED_LIST
public static final ContentBlockType ORDERED_LIST
public static final ContentBlockType HEADING
public static final ContentBlockType IMAGE
public static final ContentBlockType AUDIO
public static final ContentBlockType VIDEO
public static final ContentBlockType IIIF_PRESENTATION
public static ContentBlockType[] values()
for (ContentBlockType c : ContentBlockType.values()) System.out.println(c);
public static ContentBlockType 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 nullCopyright © 2018. All rights reserved.