public enum ClientFilterOperator extends Enum<ClientFilterOperator> implements com.google.gwt.user.client.rpc.IsSerializable
Enum Constant and Description |
---|
begins |
contains |
ends |
greater_then |
is |
smaller_then |
Modifier and Type | Method and Description |
---|---|
static ClientFilterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientFilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientFilterOperator begins
public static final ClientFilterOperator contains
public static final ClientFilterOperator is
public static final ClientFilterOperator ends
public static final ClientFilterOperator greater_then
public static final ClientFilterOperator smaller_then
public static ClientFilterOperator[] values()
for (ClientFilterOperator c : ClientFilterOperator.values()) System.out.println(c);
public static ClientFilterOperator 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 © 2016. All Rights Reserved.