|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<UIRequest_String.LayoutFlag>
jeters.core.UIRequest_String.LayoutFlag
public static enum UIRequest_String.LayoutFlag
enumeration of "layout flags", i.e. boolean pieces of information for the user interface which help to present the request in a nice way - but be careful: None of these is guaranteed to work with every UI class! They are recommendations only.
Enum Constant Summary | |
---|---|
hideInput
tells the user interface to hide the input (e.g. for passwords). |
|
lineWrap
allows to begin a new line if the text is too long to fit in the textbox. |
|
multipleLines
tells the user interface that the result is expected to be a string with newlines in it rather than a single line only. |
|
readPath
tells the user interface that the String should be a file path for reading. |
|
writePath
tells the user interface that the String should be a file path for writing. |
Method Summary | |
---|---|
static UIRequest_String.LayoutFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static UIRequest_String.LayoutFlag[] |
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 UIRequest_String.LayoutFlag hideInput
public static final UIRequest_String.LayoutFlag multipleLines
public static final UIRequest_String.LayoutFlag lineWrap
public static final UIRequest_String.LayoutFlag readPath
public static final UIRequest_String.LayoutFlag writePath
Method Detail |
---|
public static UIRequest_String.LayoutFlag[] values()
for (UIRequest_String.LayoutFlag c : UIRequest_String.LayoutFlag.values()) System.out.println(c);
public static UIRequest_String.LayoutFlag 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |