|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ContactSearch.CONDITION>
com.skype.api.ContactSearch.CONDITION
public static enum ContactSearch.CONDITION
List of available matching conditions that can be used in AddTerm methods.
| Enum Constant Summary | |
|---|---|
CONTAINS_WORD_PREFIXES
One of the words starts with searched value (string properties only). |
|
CONTAINS_WORDS
Contains the word (string properties only). |
|
EQ
Equals |
|
GE
Is greater or equal. |
|
GT
Is greater than |
|
LE
Less or equal |
|
LT
Is less than |
|
PREFIX_EQ
Start of a word macthes exactly (string properties only). |
|
PREFIX_GE
Start of a word is greater or equal (string properties only). |
|
PREFIX_LE
Start of a word is less or equal (string properties only). |
|
| Method Summary | |
|---|---|
static ContactSearch.CONDITION |
fromString(java.lang.String s)
|
static ContactSearch.CONDITION |
get(int code)
|
int |
getId()
|
static ContactSearch.CONDITION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ContactSearch.CONDITION[] |
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 ContactSearch.CONDITION EQ
public static final ContactSearch.CONDITION GT
public static final ContactSearch.CONDITION GE
public static final ContactSearch.CONDITION LT
public static final ContactSearch.CONDITION LE
public static final ContactSearch.CONDITION PREFIX_EQ
public static final ContactSearch.CONDITION PREFIX_GE
public static final ContactSearch.CONDITION PREFIX_LE
public static final ContactSearch.CONDITION CONTAINS_WORDS
public static final ContactSearch.CONDITION CONTAINS_WORD_PREFIXES
| Method Detail |
|---|
public static ContactSearch.CONDITION[] values()
for (ContactSearch.CONDITION c : ContactSearch.CONDITION.values()) System.out.println(c);
public static ContactSearch.CONDITION 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 getId()
public static ContactSearch.CONDITION get(int code)
public static ContactSearch.CONDITION fromString(java.lang.String s)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||