Uses of Class
org.h2.schema.Domain
Packages that use Domain
Package
Description
Contains DDL (data definition language) and related SQL statements.
Database constraints such as check constraints, unique constraints, and referential constraints.
Schema implementation and objects that are stored in a schema (for example, sequences and constants).
Classes related to a table and table meta data.
-
Uses of Domain in org.h2.command.ddl
Methods in org.h2.command.ddl with parameters of type DomainModifier and TypeMethodDescriptionstatic voidAlterDomain.forAllDependencies(SessionLocal session, Domain domain, BiPredicate<Domain, Column> columnProcessor, BiPredicate<Domain, Domain> domainProcessor, boolean recompileExpressions) Processes all columns and domains that use the specified domain.voidCreateDomain.setParentDomain(Domain parentDomain) Method parameters in org.h2.command.ddl with type arguments of type DomainModifier and TypeMethodDescriptionstatic voidAlterDomain.forAllDependencies(SessionLocal session, Domain domain, BiPredicate<Domain, Column> columnProcessor, BiPredicate<Domain, Domain> domainProcessor, boolean recompileExpressions) Processes all columns and domains that use the specified domain. -
Uses of Domain in org.h2.constraint
Methods in org.h2.constraint that return DomainModifier and TypeMethodDescriptionConstraintDomain.getDomain()Returns the domain of this constraint.Constructors in org.h2.constraint with parameters of type DomainModifierConstructorDescriptionConstraintDomain(Schema schema, int id, String name, Domain domain) -
Uses of Domain in org.h2.schema
Methods in org.h2.schema that return DomainModifier and TypeMethodDescriptionSchema.findDomain(String name) Get the domain if it exists, or null if not.Domain.getDomain()Get the domain with the given name.Methods in org.h2.schema that return types with arguments of type DomainMethods in org.h2.schema with parameters of type DomainModifier and TypeMethodDescriptionSchema.getUniqueDomainConstraintName(SessionLocal session, Domain domain) Create a unique constraint name.void -
Uses of Domain in org.h2.table
Methods in org.h2.table that return DomainMethods in org.h2.table with parameters of type Domain