public enum ResourceViewStyle extends java.lang.Enum<ResourceViewStyle>
Resource
view.Enum Constant and Description |
---|
General
Each row in a
Resource view has
a fixed width. |
Lanes
Each row in a
Resource view displays
one or more lanes where items are positioned. |
Modifier and Type | Method and Description |
---|---|
static ResourceViewStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResourceViewStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceViewStyle General
public static final ResourceViewStyle Lanes
Resource
view displays
one or more lanes where items are positioned. More lanes are added
automatically to respect the requirement that all overlapping items
are on separate lanes.public static ResourceViewStyle[] values()
for (ResourceViewStyle c : ResourceViewStyle.values()) System.out.println(c);
public static ResourceViewStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null