Enum Class Relationship

java.lang.Object
java.lang.Enum<Relationship>
io.micronaut.starter.api.Relationship
All Implemented Interfaces:
io.micronaut.core.naming.Named, Serializable, CharSequence, Comparable<Relationship>, Constable

public enum Relationship extends Enum<Relationship> implements io.micronaut.core.naming.Named, CharSequence
Relationship types.
Since:
1.0.0
Author:
graemerocher
  • Enum Constant Details

  • Method Details

    • values

      public static Relationship[] 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 Relationship 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
    • getName

      @NonNull public @NonNull String getName()
      Specified by:
      getName in interface io.micronaut.core.naming.Named
    • length

      public int length()
      Specified by:
      length in interface CharSequence
    • charAt

      public char charAt(int index)
      Specified by:
      charAt in interface CharSequence
    • subSequence

      public CharSequence subSequence(int start, int end)
      Specified by:
      subSequence in interface CharSequence
    • toString

      public String toString()
      Specified by:
      toString in interface CharSequence
      Overrides:
      toString in class Enum<Relationship>