public enum DocumentContentPresentation extends Enum<DocumentContentPresentation>
DocumentContentPresentation
Enumeration of document content presentation types.| Enum Constant and Description |
|---|
AP
Other application data.
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentContentPresentation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentContentPresentation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentContentPresentation AP
public static DocumentContentPresentation[] values()
for (DocumentContentPresentation c : DocumentContentPresentation.values()) System.out.println(c);
public static DocumentContentPresentation 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 © 2021. All rights reserved.