Example usage for org.hibernate.usertype UserType isMutable

List of usage examples for org.hibernate.usertype UserType isMutable

Introduction

In this page you can find the example usage for org.hibernate.usertype UserType isMutable.

Prototype

boolean isMutable();

Source Link

Document

Are objects of this type mutable?

Usage

From source file:org.codekaizen.vtj.hibernate3.AbstractValueTypeUserTypeTest.java

License:Open Source License

@Test
public void shouldReturnImmutable() {
    UserType ut = this.newUserTypeInstance();
    assertFalse(ut.isMutable());
}