public static enum ExchangeSession.Operator extends Enum<ExchangeSession.Operator>
Enum Constant and Description |
---|
And |
Contains |
IsEqualTo |
IsFalse |
IsGreaterThan |
IsGreaterThanOrEqualTo |
IsLessThan |
IsLessThanOrEqualTo |
IsNull |
IsTrue |
Like |
Not |
Or |
StartsWith |
Modifier and Type | Method and Description |
---|---|
static ExchangeSession.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExchangeSession.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchangeSession.Operator Or
public static final ExchangeSession.Operator And
public static final ExchangeSession.Operator Not
public static final ExchangeSession.Operator IsEqualTo
public static final ExchangeSession.Operator IsGreaterThan
public static final ExchangeSession.Operator IsGreaterThanOrEqualTo
public static final ExchangeSession.Operator IsLessThan
public static final ExchangeSession.Operator IsLessThanOrEqualTo
public static final ExchangeSession.Operator IsNull
public static final ExchangeSession.Operator IsTrue
public static final ExchangeSession.Operator IsFalse
public static final ExchangeSession.Operator Like
public static final ExchangeSession.Operator StartsWith
public static final ExchangeSession.Operator Contains
public static ExchangeSession.Operator[] values()
for (ExchangeSession.Operator c : ExchangeSession.Operator.values()) System.out.println(c);
public static ExchangeSession.Operator valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2001–2024 MickaĆ«l Guessant. All rights reserved.