Example usage for org.hibernate.collection.internal PersistentList PersistentList

List of usage examples for org.hibernate.collection.internal PersistentList PersistentList

Introduction

In this page you can find the example usage for org.hibernate.collection.internal PersistentList PersistentList.

Prototype

public PersistentList() 

Source Link

Document

Constructs a PersistentList.

Usage

From source file:com.corvid.json.hibernate.usertype.JsonListUserType.java

License:Apache License

@Override
public Object instantiate(int anticipatedSize) {
    return new PersistentList();
}