org.wso2.siddhi.query.api.query.input
Enum JoinStream.Type
java.lang.Object
java.lang.Enum<JoinStream.Type>
org.wso2.siddhi.query.api.query.input.JoinStream.Type
- All Implemented Interfaces:
- Serializable, Comparable<JoinStream.Type>
- Enclosing class:
- JoinStream
public static enum JoinStream.Type
- extends Enum<JoinStream.Type>
|
Method Summary |
static JoinStream.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JoinStream.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
JOIN
public static final JoinStream.Type JOIN
INNER_JOIN
public static final JoinStream.Type INNER_JOIN
LEFT_OUTER_JOIN
public static final JoinStream.Type LEFT_OUTER_JOIN
RIGHT_OUTER_JOIN
public static final JoinStream.Type RIGHT_OUTER_JOIN
FULL_OUTER_JOIN
public static final JoinStream.Type FULL_OUTER_JOIN
values
public static JoinStream.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 (JoinStream.Type c : JoinStream.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 JoinStream.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 name
NullPointerException - if the argument is null
Copyright © 2014. All rights reserved.