public enum ObjectStyleFamily extends Enum<ObjectStyleFamily>
| Enum Constant and Description |
|---|
DRAW_FILL_BITMAP
"draw:fill-bitmap: family name of styles for fill images."
|
DRAW_FILL_GRADIENT
"draw:gradient: family name of styles for gradients."
|
DRAW_FILL_HATCH
"draw:hatch: family name of styles for hatch."
|
GRAPHIC
"graphic: family name of styles for graphics."
|
PARAGRAPH
"paragraph: family name of styles for paragraphs"
|
TABLE
"table: family name of styles for tables."
|
TABLE_CELL
"table-cell: family name of styles for table cells."
|
TABLE_COLUMN
"table-column: family name of styles for table columns."
|
TABLE_ROW
"table-row: family name of styles for table rows."
|
TEXT
"text: family name of styles for text."
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static ObjectStyleFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectStyleFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectStyleFamily PARAGRAPH
public static final ObjectStyleFamily TABLE
public static final ObjectStyleFamily TABLE_CELL
public static final ObjectStyleFamily TABLE_COLUMN
public static final ObjectStyleFamily TABLE_ROW
public static final ObjectStyleFamily TEXT
public static final ObjectStyleFamily GRAPHIC
public static final ObjectStyleFamily DRAW_FILL_BITMAP
public static final ObjectStyleFamily DRAW_FILL_GRADIENT
public static final ObjectStyleFamily DRAW_FILL_HATCH
public static ObjectStyleFamily[] values()
for (ObjectStyleFamily c : ObjectStyleFamily.values()) System.out.println(c);
public static ObjectStyleFamily 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 nullpublic String getName()
Copyright © 2016–2021. All rights reserved.