Enum RelationshipCardinality
- java.lang.Object
-
- java.lang.Enum<RelationshipCardinality>
-
- com.esri.arcgisruntime.arcgisservices.RelationshipCardinality
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RelationshipCardinality>
public enum RelationshipCardinality extends java.lang.Enum<RelationshipCardinality>
An enumeration of the different cardinalities of feature table relationships.- Since:
- 100.1.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MANY_TO_MANY
Features in both tables may be related to any number of features in the other table..ONE_TO_MANY
An origin feature can be related to any number of features in the destination table.ONE_TO_ONE
An origin feature can be related to at most one feature in the destination table.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RelationshipCardinality
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RelationshipCardinality[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static RelationshipCardinality[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RelationshipCardinality c : RelationshipCardinality.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RelationshipCardinality valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-