public enum OptionalContentDrawingPolicy extends java.lang.Enum<OptionalContentDrawingPolicy>
| Enum Constant and Description |
|---|
ALL_OPTIONAL_CONTENT
Draw all optional content, regardless of visibility state.
|
NO_OPTIONAL_CONTENT
Do not draw any optional content, regardless of visibility state.
|
VISIBLE_OPTIONAL_CONTENT
Draw optional content that is visible according to the current state of the OptionalContentGroups and OptionalContentMembershipDicts.
|
| Modifier and Type | Method and Description |
|---|---|
static OptionalContentDrawingPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptionalContentDrawingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionalContentDrawingPolicy VISIBLE_OPTIONAL_CONTENT
public static final OptionalContentDrawingPolicy ALL_OPTIONAL_CONTENT
public static final OptionalContentDrawingPolicy NO_OPTIONAL_CONTENT
public static OptionalContentDrawingPolicy[] values()
for (OptionalContentDrawingPolicy c : OptionalContentDrawingPolicy.values()) System.out.println(c);
public static OptionalContentDrawingPolicy 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