Package microsoft.dynamics.crm.enums
Enum JoinOperator
- java.lang.Object
-
- java.lang.Enum<JoinOperator>
-
- microsoft.dynamics.crm.enums.JoinOperator
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<JoinOperator>
public enum JoinOperator extends Enum<JoinOperator> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLANYEXISTSININNERLEFT_OUTERMATCH_FIRST_ROW_USING_CROSS_APPLYNATURALNOT_ALLNOT_ANY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static JoinOperatorvalueOf(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.
-
-
-
Enum Constant Detail
-
INNER
public static final JoinOperator INNER
-
LEFT_OUTER
public static final JoinOperator LEFT_OUTER
-
NATURAL
public static final JoinOperator NATURAL
-
MATCH_FIRST_ROW_USING_CROSS_APPLY
public static final JoinOperator MATCH_FIRST_ROW_USING_CROSS_APPLY
-
IN
public static final JoinOperator IN
-
EXISTS
public static final JoinOperator EXISTS
-
ANY
public static final JoinOperator ANY
-
NOT_ANY
public static final JoinOperator NOT_ANY
-
ALL
public static final JoinOperator ALL
-
NOT_ALL
public static final JoinOperator NOT_ALL
-
-
Method Detail
-
values
public static JoinOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JoinOperator c : JoinOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JoinOperator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-