|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Qt.LayoutDirection>
com.trolltech.qt.core.Qt.LayoutDirection
public static enum Qt.LayoutDirection
Specifies the direction of Qt's layouts.
Constant | Value | Description |
---|---|---|
LeftToRight | 0 | Left-to-right layout. |
RightToLeft | 1 | Right-to-left layout. |
Right-to-left layouts are necessary for certain languages, notably Arabic and Hebrew.
Enum Constant Summary | |
---|---|
LeftToRight
Left-to-right layout. |
|
RightToLeft
Right-to-left layout. |
Method Summary | |
---|---|
static Qt.LayoutDirection |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static Qt.LayoutDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Qt.LayoutDirection[] |
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 Qt.LayoutDirection LeftToRight
Left-to-right layout.
public static final Qt.LayoutDirection RightToLeft
Right-to-left layout.
Method Detail |
---|
public static Qt.LayoutDirection[] values()
for (Qt.LayoutDirection c : Qt.LayoutDirection.values()) System.out.println(c);
public static Qt.LayoutDirection 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 nullpublic int value()
QtEnumerator
value
in interface QtEnumerator
public static Qt.LayoutDirection resolve(int value)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |