public enum ReportGroupType extends Enum<ReportGroupType>
| Enum Constant and Description |
|---|
BLOCK
Block group, isolated of other report elements outside it at the same context.
|
IMAGE_CONTAINER
An special group used to contain a single image in the document.
|
INLINE
Inlined group, not isolated.
|
PARAGRAPH
Paragraph group, usually for block of texts with an special align.
|
| Modifier and Type | Method and Description |
|---|---|
static ReportGroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportGroupType BLOCK
public static final ReportGroupType INLINE
public static final ReportGroupType PARAGRAPH
public static final ReportGroupType IMAGE_CONTAINER
public static ReportGroupType[] values()
for (ReportGroupType c : ReportGroupType.values()) System.out.println(c);
public static ReportGroupType 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 © 2016. All rights reserved.