public static enum AgendaLayout.LayoutStrategy extends Enum<AgendaLayout.LayoutStrategy>
Enum Constant and Description |
---|
OVERLAPPING
Intersecting agenda entries will be drawn on top of each other but
with one of them being indented by a couple of pixels (see
AgendaLayout.setOverlapOffset(double) ). |
PARALLEL
Intersecting agenda entries will be displayed in different columns
within the same day.
|
PARALLEL_OVERLAPPING
Intersecting agenda entries will be displayed in different columns
within the same day but overlapping each other.
|
Modifier and Type | Method and Description |
---|---|
static AgendaLayout.LayoutStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgendaLayout.LayoutStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgendaLayout.LayoutStrategy OVERLAPPING
AgendaLayout.setOverlapOffset(double)
).public static final AgendaLayout.LayoutStrategy PARALLEL
public static final AgendaLayout.LayoutStrategy PARALLEL_OVERLAPPING
public static AgendaLayout.LayoutStrategy[] values()
for (AgendaLayout.LayoutStrategy c : AgendaLayout.LayoutStrategy.values()) System.out.println(c);
public static AgendaLayout.LayoutStrategy 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 © 2020 Dirk Lemmermann Software & Consulting. All rights reserved.