Enum Class RelationshipCardinality

java.lang.Object
java.lang.Enum<RelationshipCardinality>
com.esri.arcgisruntime.arcgisservices.RelationshipCardinality
All Implemented Interfaces:
Serializable, Comparable<RelationshipCardinality>, Constable

public enum RelationshipCardinality extends Enum<RelationshipCardinality>
An enumeration of the different cardinalities of feature table relationships.
Since:
100.1.0
  • Enum Constant Details

    • MANY_TO_MANY

      public static final RelationshipCardinality MANY_TO_MANY
      Features in both tables may be related to any number of features in the other table..
      Since:
      100.1.0
    • ONE_TO_MANY

      public static final RelationshipCardinality ONE_TO_MANY
      An origin feature can be related to any number of features in the destination table.
      Since:
      100.1.0
    • ONE_TO_ONE

      public static final RelationshipCardinality ONE_TO_ONE
      An origin feature can be related to at most one feature in the destination table.
      Since:
      100.1.0
  • Method Details

    • values

      public static RelationshipCardinality[] 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 RelationshipCardinality 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