Uses of Interface
javax.jdo.AttributeConverter
-
Packages that use AttributeConverter Package Description javax.jdo Package providing the Java Data Objects (JDO) primary API components.javax.jdo.annotations This package contains the JDO annotations for use as an alternative to XML metadata.javax.jdo.metadata This package contains classes representing the different components of the JDO Metadata. -
-
Uses of AttributeConverter in javax.jdo
Classes in javax.jdo that implement AttributeConverter Modifier and Type Class Description static classAttributeConverter.UseDefaultDummy converter to represent "use the implementation default for this type" when using annotations. -
Uses of AttributeConverter in javax.jdo.annotations
Methods in javax.jdo.annotations that return types with arguments of type AttributeConverter Modifier and Type Method Description Class<? extends AttributeConverter>converter()OptionalAttributeConverterto use for converting this element.Class<? extends AttributeConverter>converter()OptionalAttributeConverterto use for converting this key.Class<? extends AttributeConverter>converter()OptionalAttributeConverterto use for converting this member.Class<? extends AttributeConverter>converter()OptionalAttributeConverterto use for converting this value.Class<? extends AttributeConverter>value()TheAttributeConverterto use for conversion. -
Uses of AttributeConverter in javax.jdo.metadata
Methods in javax.jdo.metadata that return AttributeConverter Modifier and Type Method Description AttributeConverter<?,?>ElementMetadata. getConverter()Accessor for the attribute converter for this element (if any).AttributeConverter<?,?>KeyMetadata. getConverter()Accessor for the attribute converter for this key (if any).AttributeConverter<?,?>MemberMetadata. getConverter()Accessor for the attribute converter for this member (if any).AttributeConverter<?,?>ValueMetadata. getConverter()Accessor for the attribute converter for this value (if any).Methods in javax.jdo.metadata with parameters of type AttributeConverter Modifier and Type Method Description ElementMetadataElementMetadata. setConverter(AttributeConverter<?,?> conv)Method to set the attribute converter to use for this element.KeyMetadataKeyMetadata. setConverter(AttributeConverter<?,?> conv)Method to set the attribute converter to use for this key.MemberMetadataMemberMetadata. setConverter(AttributeConverter<?,?> conv)Method to set the attribute converter to use for this member.ValueMetadataValueMetadata. setConverter(AttributeConverter<?,?> conv)Method to set the attribute converter to use for this value.
-