public static enum CollectionSearch.Operate extends Enum<CollectionSearch.Operate>
Enum Constant and Description |
---|
CONTAINS |
END_WITH |
EQUAL |
GREATER |
LESS |
NOT_EQUAL |
START_WITH |
Modifier and Type | Method and Description |
---|---|
static CollectionSearch.Operate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollectionSearch.Operate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionSearch.Operate EQUAL
public static final CollectionSearch.Operate NOT_EQUAL
public static final CollectionSearch.Operate GREATER
public static final CollectionSearch.Operate LESS
public static final CollectionSearch.Operate START_WITH
public static final CollectionSearch.Operate END_WITH
public static final CollectionSearch.Operate CONTAINS
public static CollectionSearch.Operate[] values()
for (CollectionSearch.Operate c : CollectionSearch.Operate.values()) System.out.println(c);
public static CollectionSearch.Operate 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 © 2020 Voovan. All rights reserved.