Module com.esri.arcgisruntime
Enum Class RelationshipCardinality
java.lang.Object
java.lang.Enum<RelationshipCardinality>
com.esri.arcgisruntime.arcgisservices.RelationshipCardinality
- All Implemented Interfaces:
Serializable
,Comparable<RelationshipCardinality>
,Constable
An enumeration of the different cardinalities of feature table relationships.
- Since:
- 100.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFeatures in both tables may be related to any number of features in the other table.An origin feature can be related to any number of features in the destination table.An origin feature can be related to at most one feature in the destination table. -
Method Summary
Modifier and TypeMethodDescriptionstatic RelationshipCardinality
Returns the enum constant of this class with the specified name.static RelationshipCardinality[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
An origin feature can be related to any number of features in the destination table.- Since:
- 100.1.0
-
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
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
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 nameNullPointerException
- if the argument is null
-