|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<WindowState>
org.mmbase.framework.WindowState
public enum WindowState
Every block can be in a certain window state, which could be considered during rendering.
| Enum Constant Summary | |
|---|---|
MAXIMIZED
Rendering may suppose a full browser window |
|
MINIMIZED
Rendering should suppose only a 'link' version from the component. |
|
NORMAL
Rendering may suppose quite a large area, but should be aware that other blocks are in a similar state. |
|
| Method Summary | |
|---|---|
static WindowState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static WindowState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final WindowState MAXIMIZED
public static final WindowState MINIMIZED
public static final WindowState NORMAL
| Method Detail |
|---|
public static WindowState[] values()
for (WindowState c : WindowState.values()) System.out.println(c);
public static WindowState valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||