public static enum Junction.Nature extends Enum<Junction.Nature>
Modifier and Type | Method and Description |
---|---|
String |
getOperator()
The corresponding SQL operator
|
static Junction.Nature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Junction.Nature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Junction.Nature AND
public static final Junction.Nature OR
public static Junction.Nature[] values()
for (Junction.Nature c : Junction.Nature.values()) System.out.println(c);
public static Junction.Nature 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 String getOperator()
Copyright © 2016 JBoss by Red Hat. All rights reserved.