Package 

Enum JoinMethod

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum JoinMethod
    extends Enum<JoinMethod>
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private final String name
      private final Integer ordinal
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      OUTER
      RIGHT
      LEFT
      FULL
      INNER
      CROSS
      SIMPLE

      We can just simply query columns without join or on keywords. For example, select o.OrderId, i.Price from orders o, prices p. We treat this as SIMPLE, following Join.isSimple

    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class kotlin.Enum

        getName, getOrdinal
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail