Enum Class Join.Type

java.lang.Object
java.lang.Enum<Join.Type>
io.micronaut.data.annotation.Join.Type
All Implemented Interfaces:
Serializable, Comparable<Join.Type>, Constable
Enclosing class:
Join

public static enum Join.Type extends Enum<Join.Type>
The type of join.
  • Enum Constant Details

    • DEFAULT

      public static final Join.Type DEFAULT
    • LEFT

      public static final Join.Type LEFT
    • LEFT_FETCH

      public static final Join.Type LEFT_FETCH
    • RIGHT_FETCH

      public static final Join.Type RIGHT_FETCH
    • FETCH

      public static final Join.Type FETCH
    • INNER

      public static final Join.Type INNER
    • OUTER

      public static final Join.Type OUTER
    • OUTER_FETCH

      public static final Join.Type OUTER_FETCH
  • Field Details

    • ALL_TYPES

      public static final EnumSet<Join.Type> ALL_TYPES
      An enumset of all enum values.
  • Method Details

    • values

      public static Join.Type[] 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 Join.Type 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
    • isFetch

      public boolean isFetch()
      Returns:
      an indicator telling whether join type is fetching