public enum PortfolioLayoutMode extends Enum<PortfolioLayoutMode>
| Enum Constant and Description |
|---|
DETAILS
Display a grid-view of file details.
|
HIDDEN
Do not show the file list by default.
|
TILE
Show thumbnails of the files.
|
| Modifier and Type | Method and Description |
|---|---|
static PortfolioLayoutMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PortfolioLayoutMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortfolioLayoutMode DETAILS
public static final PortfolioLayoutMode TILE
public static final PortfolioLayoutMode HIDDEN
public static PortfolioLayoutMode[] values()
for (PortfolioLayoutMode c : PortfolioLayoutMode.values()) System.out.println(c);
public static PortfolioLayoutMode 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 null