Package cn.cloudself.query.psi.structure
Class FromJoiner
- java.lang.Object
-
- cn.cloudself.query.psi.structure.FromJoiner
-
public class FromJoiner extends Object
-
-
Constructor Summary
Constructors Constructor Description FromJoiner(JoinType type, String table, FromJoinerOn on, String alias)FromJoiner(JoinType type, String table, List<FromJoinerOn> on)FromJoiner(JoinType type, String table, List<FromJoinerOn> on, String alias)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringalias()FromJoineralias(String alias)booleanequals(Object o)inthashCode()List<FromJoinerOn>on()FromJoineron(List<FromJoinerOn> on)Stringtable()FromJoinertable(String table)StringtoString()JoinTypetype()FromJoinertype(JoinType type)
-
-
-
Constructor Detail
-
FromJoiner
public FromJoiner(JoinType type, String table, List<FromJoinerOn> on)
-
FromJoiner
public FromJoiner(JoinType type, String table, FromJoinerOn on, @Nullable String alias)
-
FromJoiner
public FromJoiner(JoinType type, String table, List<FromJoinerOn> on, @Nullable String alias)
-
-
Method Detail
-
type
public JoinType type()
-
type
public FromJoiner type(JoinType type)
-
table
public String table()
-
table
public FromJoiner table(String table)
-
on
public List<FromJoinerOn> on()
-
on
public FromJoiner on(List<FromJoinerOn> on)
-
alias
@Nullable public String alias()
-
alias
public FromJoiner alias(@Nullable String alias)
-
-