public enum SingleSegmentType extends Enum<SingleSegmentType>
| Enum Constant and Description |
|---|
ANY |
EQ |
GE |
GT |
IN |
ISEMPTY |
ISNOTEMPTY |
ISNOTNULL |
ISNULL |
LE |
LIKE |
LLIKE |
LT |
NE |
NIN |
RLIKE |
| Modifier and Type | Method and Description |
|---|---|
Class<? extends SingleSqlSegment> |
getValue() |
static SingleSegmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SingleSegmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SingleSegmentType EQ
public static final SingleSegmentType NE
public static final SingleSegmentType ISNULL
public static final SingleSegmentType ISNOTNULL
public static final SingleSegmentType ISEMPTY
public static final SingleSegmentType ISNOTEMPTY
public static final SingleSegmentType LIKE
public static final SingleSegmentType LLIKE
public static final SingleSegmentType RLIKE
public static final SingleSegmentType LE
public static final SingleSegmentType GE
public static final SingleSegmentType LT
public static final SingleSegmentType GT
public static final SingleSegmentType IN
public static final SingleSegmentType NIN
public static final SingleSegmentType ANY
public static SingleSegmentType[] values()
for (SingleSegmentType c : SingleSegmentType.values()) System.out.println(c);
public static SingleSegmentType 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 nullpublic Class<? extends SingleSqlSegment> getValue()
Copyright © 2016. All rights reserved.