public enum RenderDestination extends Enum<RenderDestination>
Enum Constant and Description |
---|
EXPORT
graphics export
|
PRINT
printing
|
VIEW
viewing
|
Modifier and Type | Method and Description |
---|---|
static RenderDestination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderDestination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderDestination EXPORT
public static final RenderDestination VIEW
public static final RenderDestination PRINT
public static RenderDestination[] values()
for (RenderDestination c : RenderDestination.values()) System.out.println(c);
public static RenderDestination 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 © 2002–2023 The Apache Software Foundation. All rights reserved.