blob: 30169d42e7141e90ed1b28e9f2175b2d6d76bd2c [file] [log] [blame]
package storm.trident;
import java.util.Arrays;
import java.util.List;
public enum JoinType {
INNER,
OUTER;
public static List<JoinType> mixed(JoinType... types) {
return Arrays.asList(types);
}
}