public static enum Ops.StringOps extends Enum<Ops.StringOps> implements Operator
Enum Constant and Description |
---|
LEFT |
LOCATE |
LOCATE2 |
LPAD |
LPAD2 |
LTRIM |
RIGHT |
RPAD |
RPAD2 |
RTRIM |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getType()
Get the result type of the operator
|
static Ops.StringOps |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ops.StringOps[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ops.StringOps LEFT
public static final Ops.StringOps RIGHT
public static final Ops.StringOps LTRIM
public static final Ops.StringOps RTRIM
public static final Ops.StringOps LPAD
public static final Ops.StringOps RPAD
public static final Ops.StringOps LPAD2
public static final Ops.StringOps RPAD2
public static final Ops.StringOps LOCATE
public static final Ops.StringOps LOCATE2
public static Ops.StringOps[] values()
for (Ops.StringOps c : Ops.StringOps.values()) System.out.println(c);
public static Ops.StringOps 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 © 2007–2016 Querydsl. All rights reserved.