|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QLineEdit.EchoMode>
com.trolltech.qt.gui.QLineEdit.EchoMode
public static enum QLineEdit.EchoMode
This enum type describes how a line edit should display its contents.
Enum Constant Summary | |
---|---|
NoEcho
Do not display anything. |
|
Normal
Display characters as they are entered. |
|
Password
Display asterisks instead of the characters actually entered. |
|
PasswordEchoOnEdit
Display characters as they are entered while editing otherwise display asterisks. |
Method Summary | |
---|---|
static QLineEdit.EchoMode |
resolve(int value)
|
int |
value()
|
static QLineEdit.EchoMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QLineEdit.EchoMode[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final QLineEdit.EchoMode Normal
Display characters as they are entered. This is the default.
public static final QLineEdit.EchoMode NoEcho
Do not display anything. This may be appropriate for passwords where even the length of the password should be kept secret.
public static final QLineEdit.EchoMode Password
Display asterisks instead of the characters actually entered.
public static final QLineEdit.EchoMode PasswordEchoOnEdit
Display characters as they are entered while editing otherwise display asterisks.
Method Detail |
---|
public static final QLineEdit.EchoMode[] values()
for(QLineEdit.EchoMode c : QLineEdit.EchoMode.values()) System.out.println(c);
public static QLineEdit.EchoMode 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 namepublic int value()
value
in interface QtEnumerator
public static QLineEdit.EchoMode resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |