public class

CharacterArrayTypeDescriptor

extends AbstractTypeDescriptor<T>
java.lang.Object
   ↳ org.hibernate.type.descriptor.java.AbstractTypeDescriptor<T>
     ↳ org.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor

Class Overview

TODO : javadoc

Summary

Fields
public static final CharacterArrayTypeDescriptor INSTANCE
Public Constructors
CharacterArrayTypeDescriptor()
Public Methods
boolean areEqual(Character[] one, Character[] another)
Determine if two instances are equal
int extractHashCode(Character[] chars)
Extract a proper hash code for this value.
Character[] fromString(String string)
String toString(Character[] value)
<X> X unwrap(Character[] value, Class<X> type, WrapperOptions options)
<X> Character[] wrap(X value, WrapperOptions options)
[Expand]
Inherited Methods
From class org.hibernate.type.descriptor.java.AbstractTypeDescriptor
From class java.lang.Object
From interface org.hibernate.type.descriptor.java.JavaTypeDescriptor

Fields

public static final CharacterArrayTypeDescriptor INSTANCE

Public Constructors

public CharacterArrayTypeDescriptor ()

Public Methods

public boolean areEqual (Character[] one, Character[] another)

Determine if two instances are equal

Parameters
one One instance
another The other instance
Returns
  • True if the two are considered equal; false otherwise.

public int extractHashCode (Character[] chars)

Extract a proper hash code for this value.

Parameters
chars The value for which to extract a hash code.
Returns
  • The extracted hash code.

public Character[] fromString (String string)

public String toString (Character[] value)

public X unwrap (Character[] value, Class<X> type, WrapperOptions options)

public Character[] wrap (X value, WrapperOptions options)