Enum Class Relation.Kind

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

public static enum Relation.Kind extends Enum<Relation.Kind>
The relation kind.
  • Enum Constant Details

    • ONE_TO_MANY

      public static final Relation.Kind ONE_TO_MANY
      One-To-Many association.
    • ONE_TO_ONE

      public static final Relation.Kind ONE_TO_ONE
      One-to-one association.
    • MANY_TO_MANY

      public static final Relation.Kind MANY_TO_MANY
      Many-To-Many association.
    • EMBEDDED

      public static final Relation.Kind EMBEDDED
      Embedded association.
    • MANY_TO_ONE

      public static final Relation.Kind MANY_TO_ONE
      Many-To-One association.
  • Method Details

    • values

      public static Relation.Kind[] 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 Relation.Kind 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
    • isSingleEnded

      public boolean isSingleEnded()
      Returns:
      Whether the association is single ended