public static enum AgendaLayout.ConflictStrategy extends Enum<AgendaLayout.ConflictStrategy>
Enum Constant and Description |
---|
OVERLAPPING
Conflicting 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
Conflicting agenda entries will be displayed in different columns
within the same day.
|
Modifier and Type | Method and Description |
---|---|
static AgendaLayout.ConflictStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgendaLayout.ConflictStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgendaLayout.ConflictStrategy OVERLAPPING
AgendaLayout.setOverlapOffset(double)
).public static final AgendaLayout.ConflictStrategy PARALLEL
public static AgendaLayout.ConflictStrategy[] values()
for (AgendaLayout.ConflictStrategy c : AgendaLayout.ConflictStrategy.values()) System.out.println(c);
public static AgendaLayout.ConflictStrategy 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 © 2014 Dirk Lemmermann Software & Consulting. All rights reserved.