Uses of Interface
oracle.pgx.api.keys.ForeignKeyColumnDescriptor
-
Packages that use ForeignKeyColumnDescriptor Package Description oracle.pgx.api.keys oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of ForeignKeyColumnDescriptor in oracle.pgx.api.keys
Methods in oracle.pgx.api.keys that return ForeignKeyColumnDescriptor Modifier and Type Method Description static ForeignKeyColumnDescriptorKeyUtils. getForeignKeyColumnDescriptorOrDefault(java.util.List<? extends ForeignKeyColumnDescriptor> keyColumnDescriptors, java.lang.String defaultName)static ForeignKeyColumnDescriptorForeignKeyColumnDescriptor. of(java.lang.String name, java.lang.String referencedColumn)Create an (immutable) instance of a foreign key column descriptor.Methods in oracle.pgx.api.keys with parameters of type ForeignKeyColumnDescriptor Modifier and Type Method Description static java.lang.StringKeyUtils. getNameOrNull(ForeignKeyColumnDescriptor foreignKeyColumnDescriptor)Get the name of aforeign key column.Method parameters in oracle.pgx.api.keys with type arguments of type ForeignKeyColumnDescriptor Modifier and Type Method Description static ForeignKeyColumnDescriptorKeyUtils. getForeignKeyColumnDescriptorOrDefault(java.util.List<? extends ForeignKeyColumnDescriptor> keyColumnDescriptors, java.lang.String defaultName)static java.lang.StringKeyUtils. getForeignKeyColumnName(java.util.List<? extends ForeignKeyColumnDescriptor> foreignKeyColumns)Get the name of a foreign key column, if and only if there is exactly one foreign key column.static voidKeyUtils. validateForeignKey(java.util.List<? extends ForeignKeyColumnDescriptor> foreignKeyColumns)Validate foreign key columns of an edge provider.static voidKeyUtils. validateForeignKeyToPrimaryKey(java.util.List<? extends ForeignKeyColumnDescriptor> foreignKeys, java.util.List<? extends KeyColumnDescriptor> primaryKeys)Check is a foreign key definition matches a primary key definition. -
Uses of ForeignKeyColumnDescriptor in oracle.pgx.config
Classes in oracle.pgx.config that implement ForeignKeyColumnDescriptor Modifier and Type Class Description classForeignKeyColumnConfig(BETA) Describes a foreign key relation.Methods in oracle.pgx.config that return types with arguments of type ForeignKeyColumnDescriptor Modifier and Type Method Description abstract java.util.List<? extends ForeignKeyColumnDescriptor>AbstractFileEntityProviderConfig. getDestinationKeyColumns()Get the destination key declaration associated with this entity provider config.abstract java.util.List<? extends ForeignKeyColumnDescriptor>AbstractRdbmsEntityProviderConfig. getDestinationKeyColumns()Get the destination key declaration associated with this entity provider config.abstract java.util.List<? extends ForeignKeyColumnDescriptor>AbstractFileEntityProviderConfig. getSourceKeyColumns()Get the source key declaration associated with this entity provider config.abstract java.util.List<? extends ForeignKeyColumnDescriptor>AbstractRdbmsEntityProviderConfig. getSourceKeyColumns()Get the source key declaration associated with this entity provider config.java.util.List<? extends ForeignKeyColumnDescriptor>AbstractFileEntityProviderConfig. getValidatedDestinationKeyColumns()Validate and get the source key declaration associated with this provider configuration.java.util.List<? extends ForeignKeyColumnDescriptor>AbstractRdbmsEntityProviderConfig. getValidatedDestinationKeyColumns()Validate and get the source key declaration associated with this provider configuration.java.util.List<? extends ForeignKeyColumnDescriptor>AbstractFileEntityProviderConfig. getValidatedSourceKeyColumns()Validate and get the source key declaration associated with this provider configuration.java.util.List<? extends ForeignKeyColumnDescriptor>AbstractRdbmsEntityProviderConfig. getValidatedSourceKeyColumns()Validate and get the source key declaration associated with this provider configuration.Method parameters in oracle.pgx.config with type arguments of type ForeignKeyColumnDescriptor Modifier and Type Method Description FileEntityProviderConfigBuilderFileEntityProviderConfigBuilder. setDestinationKeyColumns(java.util.List<? extends ForeignKeyColumnDescriptor> destinationKeyColumns)Set destination key columns, i.e., a list of columns with foreign key relations to key columns in the destination vertex provider.RdbmsEntityProviderConfigBuilderRdbmsEntityProviderConfigBuilder. setDestinationKeyColumns(java.util.List<? extends ForeignKeyColumnDescriptor> destinationKeyColumns)Set destination key columns, i.e., a list of columns with foreign key relations to key columns in the destination vertex provider.FileEntityProviderConfigBuilderFileEntityProviderConfigBuilder. setSourceKeyColumns(java.util.List<? extends ForeignKeyColumnDescriptor> sourceKeyColumns)Set source key columns, i.e., a list of columns with foreign key relations to key columns in the source vertex provider.RdbmsEntityProviderConfigBuilderRdbmsEntityProviderConfigBuilder. setSourceKeyColumns(java.util.List<? extends ForeignKeyColumnDescriptor> sourceKeyColumns)Set source key columns, i.e., a list of columns with foreign key relations to key columns in the source vertex provider.
-