|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<QRegExp.CaretMode>
com.trolltech.qt.core.QRegExp.CaretMode
public static enum QRegExp.CaretMode
The CaretMode enum defines the different meanings of the caret (^) in a regular expression. The possible values are:
| Constant | Value | Description |
|---|---|---|
| CaretAtZero | 0 | The caret corresponds to index 0 in the searched string. |
| CaretAtOffset | 1 | The caret corresponds to the start offset of the search. |
| CaretWontMatch | 2 | The caret never matches. |
| Enum Constant Summary | |
|---|---|
CaretAtOffset
The caret corresponds to the start offset of the search. |
|
CaretAtZero
The caret corresponds to index 0 in the searched string. |
|
CaretWontMatch
The caret never matches. |
|
| Method Summary | |
|---|---|
static QRegExp.CaretMode |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static QRegExp.CaretMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QRegExp.CaretMode[] |
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 QRegExp.CaretMode CaretAtZero
The caret corresponds to index 0 in the searched string.
public static final QRegExp.CaretMode CaretAtOffset
The caret corresponds to the start offset of the search.
public static final QRegExp.CaretMode CaretWontMatch
The caret never matches.
| Method Detail |
|---|
public static final QRegExp.CaretMode[] values()
for(QRegExp.CaretMode c : QRegExp.CaretMode.values())
System.out.println(c);
public static QRegExp.CaretMode 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()
QtEnumerator
value in interface QtEnumeratorpublic static QRegExp.CaretMode resolve(int value)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||