Enum RelationshipCardinality

    • 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​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null