Uses of Interface
org.eclipse.persistence.platform.database.converters.StructConverter
-
Packages that use StructConverter Package Description org.eclipse.persistence.internal.databaseaccess org.eclipse.persistence.sessions -
-
Uses of StructConverter in org.eclipse.persistence.internal.databaseaccess
Fields in org.eclipse.persistence.internal.databaseaccess with type parameters of type StructConverter Modifier and Type Field Description protected Map<String,StructConverter>DatabasePlatform. structConvertersThe following two maps, provide two ways of looking up StructConverters.protected Map<Class<?>,StructConverter>DatabasePlatform. typeConvertersMethods in org.eclipse.persistence.internal.databaseaccess that return types with arguments of type StructConverter Modifier and Type Method Description Map<String,StructConverter>DatabasePlatform. getStructConverters()INTERNAL: Get the map of StructConverters that will be used to preprocess STRUCT data as it is readMap<Class<?>,StructConverter>DatabasePlatform. getTypeConverters()INTERNAL: Get the map of TypeConverters This map indexes StructConverters by the Java Class they are meant to convertMethods in org.eclipse.persistence.internal.databaseaccess with parameters of type StructConverter Modifier and Type Method Description voidDatabasePlatform. addStructConverter(StructConverter converter)PUBLIC: Add a StructConverter to this DatabasePlatform This StructConverter will be invoked for all writes to the database for the class returned by its getJavaType() method and for all reads from the database for the Structs described by its getStructName() method -
Uses of StructConverter in org.eclipse.persistence.sessions
Methods in org.eclipse.persistence.sessions with parameters of type StructConverter Modifier and Type Method Description voidDatabaseLogin. addStructConverter(StructConverter converter)ADVANCED: Add a StructConverter
-