Enum Join.Policy
- java.lang.Object
-
- java.lang.Enum<Join.Policy>
-
- com.oracle.bmc.dataintegration.model.Join.Policy
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<Join.Policy>
- Enclosing class:
- Join
public static enum Join.Policy extends Enum<Join.Policy> implements BmcEnum
The type of join.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FullJoin
InnerJoin
LeftJoin
RightJoin
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Join.Policy
create(String key)
String
getValue()
static Join.Policy
valueOf(String name)
Returns the enum constant of this type with the specified name.static Join.Policy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
InnerJoin
public static final Join.Policy InnerJoin
-
LeftJoin
public static final Join.Policy LeftJoin
-
RightJoin
public static final Join.Policy RightJoin
-
FullJoin
public static final Join.Policy FullJoin
-
UnknownEnumValue
public static final Join.Policy UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static Join.Policy[] 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 (Join.Policy c : Join.Policy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Join.Policy 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
-
create
public static Join.Policy create(String key)
-
-