Enum Class JoinTypes

java.lang.Object
java.lang.Enum<JoinTypes>
com.hades.model.enumeration.relational.JoinTypes
All Implemented Interfaces:
Serializable, Comparable<JoinTypes>, java.lang.constant.Constable

public enum JoinTypes extends Enum<JoinTypes>
Author:
alireza_bayat created on 10/31/21
  • Enum Constant Details

    • JOIN

      public static final JoinTypes JOIN
    • LEFT_JOIN

      public static final JoinTypes LEFT_JOIN
    • RIGHT_JOIN

      public static final JoinTypes RIGHT_JOIN
    • FULL_OUTER_JOIN

      public static final JoinTypes FULL_OUTER_JOIN
  • Method Details

    • values

      public static JoinTypes[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static JoinTypes valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getJoinType

      public String getJoinType()