Example usage for org.hibernate.internal.util.collections ArrayHelper TRUE

List of usage examples for org.hibernate.internal.util.collections ArrayHelper TRUE

Introduction

In this page you can find the example usage for org.hibernate.internal.util.collections ArrayHelper TRUE.

Prototype

null TRUE

To view the source code for org.hibernate.internal.util.collections ArrayHelper TRUE.

Click Source Link

Usage

From source file:org.jboss.as.test.compat.jpa.hibernate.transformer.BooleanSingleColumnType.java

License:Open Source License

@Override
public boolean[] toColumnNullness(Object value, Mapping mapping) {
    return value == null ? ArrayHelper.FALSE : ArrayHelper.TRUE;
}