public enum PdfTextRenderingMode extends java.lang.Enum<PdfTextRenderingMode>
Enum Constant and Description |
---|
CLIP
Add text to path for clipping.
|
FILL
Fill text.
|
FILL_CLIP
Fill text and add to path for clipping.
|
FILL_STROKE
Fill, then stroke text.
|
FILL_STROKE_CLIP
Fill, then stroke text and add to path for clipping.
|
INVISIBLE
Neither fill nor stroke text (invisible).
|
STROKE
Stroke text.
|
STROKE_CLIP
Stroke text and add to path for clipping.
|
Modifier and Type | Method and Description |
---|---|
byte |
getModeValue()
Returns the PDF value for this mode.
|
static PdfTextRenderingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PdfTextRenderingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PdfTextRenderingMode FILL
public static final PdfTextRenderingMode STROKE
public static final PdfTextRenderingMode FILL_STROKE
public static final PdfTextRenderingMode INVISIBLE
public static final PdfTextRenderingMode FILL_CLIP
public static final PdfTextRenderingMode STROKE_CLIP
public static final PdfTextRenderingMode FILL_STROKE_CLIP
public static final PdfTextRenderingMode CLIP
public static PdfTextRenderingMode[] values()
for (PdfTextRenderingMode c : PdfTextRenderingMode.values()) System.out.println(c);
public static PdfTextRenderingMode 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 nullpublic byte getModeValue()
This documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.