public static enum Concat.Position extends Enum<Concat.Position>
| Modifier and Type | Method and Description |
|---|---|
javax.persistence.criteria.Expression<String> |
build(javax.persistence.criteria.CriteriaBuilder cb,
javax.persistence.criteria.Expression<String> expression,
String string) |
static Concat.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Concat.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Concat.Position BEFORE
public static final Concat.Position AFTER
public static Concat.Position[] values()
for (Concat.Position c : Concat.Position.values()) System.out.println(c);
public static Concat.Position 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. All rights reserved.