public static enum LikeCondition.Type extends Enum<LikeCondition.Type>
Enum Constant and Description |
---|
ANY |
ENDSWITH |
STARTSWITH |
UNKNOW |
Modifier and Type | Method and Description |
---|---|
static LikeCondition.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LikeCondition.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
abstract String |
wrap(String toMatch) |
public static final LikeCondition.Type ANY
public static final LikeCondition.Type STARTSWITH
public static final LikeCondition.Type ENDSWITH
public static final LikeCondition.Type UNKNOW
public static LikeCondition.Type[] values()
for (LikeCondition.Type c : LikeCondition.Type.values()) System.out.println(c);
public static LikeCondition.Type 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 © 2011–2019. All rights reserved.