Internal Website Search

1-10 of 200 resultsRefresh

java.io.Serializable

java.ioInterface Serializable Subinterfaces:

ObjectDB Object Database Features

="/java/jpa/entity/types#serializable_types">Serializable types Persistent ... /jpa/entity/types#serializable_types">serializable type. Lifecycle Events

JPA Persistable Types

and Arrays. Miscellaneous types: Enum types and Serializable types (user or system defined). Serializable Types Every serializable class (user defined or system defined) is also persistable

Constants.PROPERTY_TRANSACTION_ISOLATION_LEVEL_SERIALIZABLE

>String PROPERTY_TRANSACTION_ISOLATION_LEVEL_SERIALIZABLE "javax.jdo.option.TransactionIsolationLevel.serializable" Since: JDO 2.2

PersistenceCapable.SERIALIZABLE

.PersistenceCapablebyte SERIALIZABLE If jdoFieldFlags for a field includes SERIALIZABLE, then the field is not declared as TRANSIENT. Since: JDO 1.0

Constants.TX_SERIALIZABLE

Static Field javax.jdo.ConstantsString TX_SERIALIZABLE Transaction isolation level representing the requirement

Step 2: Entity Class and Persistence Unit

with the following code: package guest; import java.io.Serializable ... ; import javax.persistence.Id; @Entity public class Guest implements Serializable { private

Step 2: Define a JPA Entity Class

; import java.io.Serializable; import javax.persistence.*; @Entity public class Point implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue

Step 2: Define a JPA Entity Class

: package tutorial; import java.io.Serializable; import javax.persistence.*; @Entity public class Point implements Serializable { private static final long

Step 2: Entity Class and Persistence Unit

: package guest; import java.io.Serializable; import java.sql.Date; import ... ; @Entity public class Guest implements Serializable { private static final long