public enum XpsEdgeMode extends Enum<XpsEdgeMode>
Valid values of Canvas element's RenderOptions.EdgeMode property.
Enum Constant and Description |
---|
Aliased
The edges are to be aliased.
|
None
The edges are to be rendered in the consumer's default manner.
|
Modifier and Type | Method and Description |
---|---|
static XpsEdgeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XpsEdgeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XpsEdgeMode None
The edges are to be rendered in the consumer's default manner.
public static final XpsEdgeMode Aliased
The edges are to be aliased.
public static XpsEdgeMode[] values()
for (XpsEdgeMode c : XpsEdgeMode.values()) System.out.println(c);
public static XpsEdgeMode 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 null