public enum ContentRecording extends java.lang.Enum<ContentRecording>
| Enum Constant and Description |
|---|
INCLUDE_ALL_CONTENT
Include all content objects referenced by a
Home instance. |
INCLUDE_NO_CONTENT
Include no content instance referenced by a
Home instance. |
INCLUDE_TEMPORARY_CONTENT
Include content instances of
TemporaryURLContent class referenced by a
Home instance as well as the content already saved with it. |
| Modifier and Type | Method and Description |
|---|---|
static ContentRecording |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContentRecording[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentRecording INCLUDE_ALL_CONTENT
Home instance.public static final ContentRecording INCLUDE_TEMPORARY_CONTENT
TemporaryURLContent class referenced by a
Home instance as well as the content already saved with it.public static final ContentRecording INCLUDE_NO_CONTENT
Home instance.
This should be used only if all the content objects reference external data which is always available
(with an URL for example).public static ContentRecording[] values()
for (ContentRecording c : ContentRecording.values()) System.out.println(c);
public static ContentRecording 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

© Copyright 2024 Space Mushrooms
Distributed under GNU General Public License