public static enum ILayer.Feature extends Enum<ILayer.Feature>
LabelLayer
for example can
decide to completely ignore a layer if the layer does not support the
TIMELINE_OBJECT_DESCRIPTIONS
feature.Enum Constant and Description |
---|
DELETION
A value indicating that a layer can be deleted interactively by the
user.
|
OVERVIEW
A value indicating that a layer can be shown miniaturized in the
overview palette (see
OverviewPalette ). |
RELATIONSHIPS
A value indicating that a layer and the data contained within the
layer (the timeline objects) support relationships that can for
example be visualized by the
RelationshipLayer . |
SHOW_IN_PALETTE
A value indicating that the layer can be shown to the user in the
layer palette control.
|
TIMELINE_OBJECT_CREATION
A value indicating that a layer supports the interactive creation of
timeline objects.
|
TIMELINE_OBJECT_DESCRIPTIONS
A value indicating that a layer and the data contained within the
layer (the timeline objects) support descriptive labels that can for
example be visualized by the
LabelLayer . |
TRANSPARENCY
A value indicating that a layer supports transparency (for which
purpose is not relevant).
|
Modifier and Type | Method and Description |
---|---|
static ILayer.Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ILayer.Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ILayer.Feature TIMELINE_OBJECT_DESCRIPTIONS
LabelLayer
.public static final ILayer.Feature RELATIONSHIPS
RelationshipLayer
.public static final ILayer.Feature DELETION
public static final ILayer.Feature TRANSPARENCY
public static final ILayer.Feature OVERVIEW
OverviewPalette
).public static final ILayer.Feature TIMELINE_OBJECT_CREATION
public static final ILayer.Feature SHOW_IN_PALETTE
public static ILayer.Feature[] values()
for (ILayer.Feature c : ILayer.Feature.values()) System.out.println(c);
public static ILayer.Feature 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.