Uses of Interface
javax.jdo.metadata.ColumnMetadata
Packages that use ColumnMetadata
Package
Description
This package contains classes representing the different components of the JDO Metadata.
-
Uses of ColumnMetadata in javax.jdo.metadata
Methods in javax.jdo.metadata that return ColumnMetadataModifier and TypeMethodDescriptionDatastoreIdentityMetadata.getColumns()
Accessor for all column(s) defined on the datastore identity.DiscriminatorMetadata.getColumns()
Accessor for all column(s) defined on the discriminator.ElementMetadata.getColumns()
Accessor for all column(s) defined on the element.ForeignKeyMetadata.getColumns()
Accessor for all column(s) defined on the FK.IndexMetadata.getColumns()
Accessor for all column(s) defined on the index.JoinMetadata.getColumns()
Accessor for all column(s) defined on the join.KeyMetadata.getColumns()
Accessor for all column(s) defined on the key.MemberMetadata.getColumns()
Accessor for all column(s) defined on the join.OrderMetadata.getColumns()
Accessor for all column(s) defined on the ordering.PrimaryKeyMetadata.getColumns()
Accessor for all column(s) defined on the PK.TypeMetadata.getColumns()
Accessor for all column(s) defined on the join.UniqueMetadata.getColumns()
Accessor for all column(s) defined on the unique constraint.ValueMetadata.getColumns()
Accessor for all column(s) defined on the value.VersionMetadata.getColumns()
Accessor for all column(s) defined on the version.IndexMetadata.newColumn()
Add a new column for this index.DatastoreIdentityMetadata.newColumnMetadata()
Add a new column for this datastore identity.DiscriminatorMetadata.newColumnMetadata()
Add a new column for this discriminator.ElementMetadata.newColumnMetadata()
Add a new column for this element.ForeignKeyMetadata.newColumnMetadata()
Add a new column for this FK.JoinMetadata.newColumnMetadata()
Add a new column for this join.KeyMetadata.newColumnMetadata()
Add a new column for this key.MemberMetadata.newColumnMetadata()
Add a new column for this join.OrderMetadata.newColumnMetadata()
Add a column for this ordering.PrimaryKeyMetadata.newColumnMetadata()
Add a new column for this PK.TypeMetadata.newColumnMetadata()
Add a new column for this join.UniqueMetadata.newColumnMetadata()
Add a new column for this unique constraint.ValueMetadata.newColumnMetadata()
Add a new column for this value.VersionMetadata.newColumnMetadata()
Add a new column for this version.ColumnMetadata.setAllowsNull
(boolean nulls) Method to set whether it allows null.ColumnMetadata.setDefaultValue
(String val) Method to set the default value.ColumnMetadata.setInsertValue
(String val) Method to set the insert value (for columns with no field/property).ColumnMetadata.setJDBCType
(String type) Method to set the JDBC type.ColumnMetadata.setLength
(int len) Method to set the length.Method to set the column name.ColumnMetadata.setPosition
(int pos) Method to set the position.ColumnMetadata.setScale
(int scale) Method to set the scale.ColumnMetadata.setSQLType
(String type) Method to set the SQL type.Method to set the target column (at the other side of the relation).ColumnMetadata.setTargetField
(String target) Method to set the target field (at the other side of the relation).