public static enum RegexpUtil.SqlPatternType extends Enum<RegexpUtil.SqlPatternType>
| Enum Constant and Description |
|---|
COMPLEX |
CONSTANT |
CONTAINS |
ENDS_WITH |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static RegexpUtil.SqlPatternType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegexpUtil.SqlPatternType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegexpUtil.SqlPatternType STARTS_WITH
public static final RegexpUtil.SqlPatternType ENDS_WITH
public static final RegexpUtil.SqlPatternType CONTAINS
public static final RegexpUtil.SqlPatternType CONSTANT
public static final RegexpUtil.SqlPatternType COMPLEX
public static RegexpUtil.SqlPatternType[] values()
for (RegexpUtil.SqlPatternType c : RegexpUtil.SqlPatternType.values()) System.out.println(c);
public static RegexpUtil.SqlPatternType 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 © 2017 The Apache Software Foundation. All rights reserved.