Class ByteJavaType
- java.lang.Object
- org.hibernate.type.descriptor.java.AbstractClassJavaType<Byte>
- org.hibernate.type.descriptor.java.ByteJavaType
- All Implemented Interfaces:
Serializable,BasicJavaType<Byte>,JavaType<Byte>,PrimitiveJavaType<Byte>,VersionJavaType<Byte>
public classByteJavaTypeextendsAbstractClassJavaType<Byte>implementsPrimitiveJavaType<Byte>,VersionJavaType<Byte>
Descriptor forBytehandling.- See Also:
- Serialized Form
Nested Class Summary
Nested classes/interfaces inherited from interface org.hibernate.type.descriptor.java.JavaType
JavaType.CoercionContext
Field Summary
Fields Modifier and Type Field Description staticByteJavaTypeINSTANCE
Constructor Summary
Constructors Constructor Description ByteJavaType()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <X> Bytecoerce(X value,JavaType.CoercionContext coercionContext)BytefromString(CharSequence string)Class<Byte[]>getArrayClass()Get the Java type that describes an array of this type.longgetDefaultSqlLength(Dialect dialect,JdbcType jdbcType)The default column length when this Java type is mapped to a SQL data type which is parametrized by length, for exampleTypes.VARCHAR.intgetDefaultSqlPrecision(Dialect dialect,JdbcType jdbcType)The default column precision when this Java type is mapped to a SQL data type which is parametrized by precision, for exampleTypes.DECIMAL.intgetDefaultSqlScale(Dialect dialect,JdbcType jdbcType)The default column scale when this Java type is mapped to a SQL data type which is parametrized by scale, for exampleTypes.DECIMAL.BytegetDefaultValue()Get this Java type's default value.Class<?>getPrimitiveArrayClass()Get the Java type that describes an array of this type's primitive variant.Class<Byte>getPrimitiveClass()Retrieve the primitive counterpart to the wrapper type identified by this descriptorBytenext(Byte current,Long length,Integer precision,Integer scale,SharedSessionContractImplementor session)Increment the version.Byteseed(Long length,Integer precision,Integer scale,SharedSessionContractImplementor session)Generate an initial version.StringtoString(Byte value)<X> Xunwrap(Byte value,Class<X> type,WrapperOptions options)Unwrap an instance of our handled Java type into the requested type.booleanuseObjectEqualsHashCode()Whether to useObject.equals(Object)andObject.hashCode()orJavaType.areEqual(Object, Object)andJavaType.extractHashCode(Object)for objects of this java type.<X> Bytewrap(X value,WrapperOptions options)Wrap a value as our handled Java type.Methods inherited from class org.hibernate.type.descriptor.java.AbstractClassJavaType
areEqual,extractHashCode,extractLoggableRepresentation,getComparator,getJavaType,getJavaTypeClass,getMutabilityPlan,unknownUnwrap,unknownWrap
Methods inherited from class java.lang.Object
clone,equals,finalize,getClass,hashCode,notify,notifyAll,toString,wait,wait,wait
Methods inherited from interface org.hibernate.type.descriptor.java.BasicJavaType
getRecommendedJdbcType
Methods inherited from interface org.hibernate.type.descriptor.java.JavaType
appendEncodedString,areEqual,createJavaType,createJavaType,extractHashCode,extractLoggableRepresentation,fromEncodedString,getCheckCondition,getComparator,getJavaType,getJavaTypeClass,getLongSqlLength,getMutabilityPlan,getReplacement,getTypeName,isInstance,isTemporalType,isWider
Field Detail
INSTANCE
public static final ByteJavaType INSTANCE
Method Detail
useObjectEqualsHashCode
public boolean useObjectEqualsHashCode()
Description copied from interface:JavaTypeWhether to useObject.equals(Object)andObject.hashCode()orJavaType.areEqual(Object, Object)andJavaType.extractHashCode(Object)for objects of this java type. This is useful to avoid mega-morphic callsites.- Specified by:
useObjectEqualsHashCodein interfaceJavaType<Byte>
fromString
public Byte fromString(CharSequence string)
- Specified by:
fromStringin interfaceBasicJavaType<Byte>- Specified by:
fromStringin interfaceJavaType<Byte>
unwrap
public <X> X unwrap(Byte value,Class<X> type,WrapperOptions options)
Description copied from interface:JavaTypeUnwrap an instance of our handled Java type into the requested type.As an example, if this is a
JavaType<Integer>and we are asked to unwrap theInteger valueas aLong, we would return something likeLong.valueOf( value.longValue() ).Intended use is during
PreparedStatementbinding.
wrap
public <X> Byte wrap(X value,WrapperOptions options)
Description copied from interface:JavaTypeWrap a value as our handled Java type.Intended use is during
ResultSetextraction.
getPrimitiveClass
public Class<Byte> getPrimitiveClass()
Description copied from interface:PrimitiveJavaTypeRetrieve the primitive counterpart to the wrapper type identified by this descriptor- Specified by:
getPrimitiveClassin interfacePrimitiveJavaType<Byte>- Returns:
- The primitive Java type.
getArrayClass
public Class<Byte[]> getArrayClass()
Description copied from interface:PrimitiveJavaTypeGet the Java type that describes an array of this type.- Specified by:
getArrayClassin interfacePrimitiveJavaType<Byte>
getPrimitiveArrayClass
public Class<?> getPrimitiveArrayClass()
Description copied from interface:PrimitiveJavaTypeGet the Java type that describes an array of this type's primitive variant.- Specified by:
getPrimitiveArrayClassin interfacePrimitiveJavaType<Byte>
getDefaultValue
public Byte getDefaultValue()
Description copied from interface:JavaTypeGet this Java type's default value.- Specified by:
getDefaultValuein interfaceJavaType<Byte>- Returns:
- The default value.
getDefaultSqlLength
public long getDefaultSqlLength(Dialect dialect,JdbcType jdbcType)
Description copied from interface:JavaTypeThe default column length when this Java type is mapped to a SQL data type which is parametrized by length, for exampleTypes.VARCHAR.- Specified by:
getDefaultSqlLengthin interfaceJavaType<Byte>- Returns:
Size.DEFAULT_LENGTHunless overridden
getDefaultSqlPrecision
public int getDefaultSqlPrecision(Dialect dialect,JdbcType jdbcType)
Description copied from interface:JavaTypeThe default column precision when this Java type is mapped to a SQL data type which is parametrized by precision, for exampleTypes.DECIMAL.- Specified by:
getDefaultSqlPrecisionin interfaceJavaType<Byte>- Returns:
Size.DEFAULT_PRECISIONunless overridden
getDefaultSqlScale
public int getDefaultSqlScale(Dialect dialect,JdbcType jdbcType)
Description copied from interface:JavaTypeThe default column scale when this Java type is mapped to a SQL data type which is parametrized by scale, for exampleTypes.DECIMAL.- Specified by:
getDefaultSqlScalein interfaceJavaType<Byte>- Returns:
Size.DEFAULT_SCALEunless overridden
coerce
public <X> Byte coerce(X value,JavaType.CoercionContext coercionContext)
next
public Byte next(Byte current,Long length,Integer precision,Integer scale,SharedSessionContractImplementor session)
Description copied from interface:VersionJavaTypeIncrement the version.- Specified by:
nextin interfaceVersionJavaType<Byte>- Parameters:
current- the current versionlength- The length of the typeprecision- The precision of the typescale- The scale of the typesession- The session from which this request originates.- Returns:
- an instance of the type
seed
public Byte seed(Long length,Integer precision,Integer scale,SharedSessionContractImplementor session)
Description copied from interface:VersionJavaTypeGenerate an initial version.Note that this operation is only used when the program sets a null or negative number as the value of the entity version field. It is not called when the program sets the version field to a sensible-looking version.
- Specified by:
seedin interfaceVersionJavaType<Byte>- Parameters:
length- The length of the typeprecision- The precision of the typescale- The scale of the typesession- The session from which this request originates.- Returns:
- an instance of the type