public enum JoinOperator extends Enum<JoinOperator> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
ALL |
ANY |
EXISTS |
IN |
INNER |
LEFT_OUTER |
MATCH_FIRST_ROW_USING_CROSS_APPLY |
NATURAL |
NOT_ALL |
NOT_ANY |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static JoinOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinOperator INNER
public static final JoinOperator LEFT_OUTER
public static final JoinOperator NATURAL
public static final JoinOperator MATCH_FIRST_ROW_USING_CROSS_APPLY
public static final JoinOperator IN
public static final JoinOperator EXISTS
public static final JoinOperator ANY
public static final JoinOperator NOT_ANY
public static final JoinOperator ALL
public static final JoinOperator NOT_ALL
public static JoinOperator[] values()
for (JoinOperator c : JoinOperator.values()) System.out.println(c);
public static JoinOperator 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 enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2021. All rights reserved.