Enum JoinInputStream.Type
- java.lang.Object
-
- java.lang.Enum<JoinInputStream.Type>
-
- io.siddhi.query.api.execution.query.input.stream.JoinInputStream.Type
-
- All Implemented Interfaces:
Serializable,Comparable<JoinInputStream.Type>
- Enclosing class:
- JoinInputStream
public static enum JoinInputStream.Type extends Enum<JoinInputStream.Type>
Different join types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_OUTER_JOININNER_JOINJOINLEFT_OUTER_JOINRIGHT_OUTER_JOIN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JoinInputStream.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static JoinInputStream.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOIN
public static final JoinInputStream.Type JOIN
-
INNER_JOIN
public static final JoinInputStream.Type INNER_JOIN
-
LEFT_OUTER_JOIN
public static final JoinInputStream.Type LEFT_OUTER_JOIN
-
RIGHT_OUTER_JOIN
public static final JoinInputStream.Type RIGHT_OUTER_JOIN
-
FULL_OUTER_JOIN
public static final JoinInputStream.Type FULL_OUTER_JOIN
-
-
Method Detail
-
values
public static JoinInputStream.Type[] 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 (JoinInputStream.Type c : JoinInputStream.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JoinInputStream.Type 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
-
-