Automatic Java Types
criteria.eq( "id", javaCast( "int", arguments.id ) );Auto Types
// Coverts a value to the correct javaType for the property passed in The method returns the value in the proper Java Type
any convertValueToJavaType( any propertyName, any value )
// Coverts an ID, list of ID's, or array of ID's values to the proper java type The method returns a coverted array of ID's
any convertIDValueToJavaType( any id )criteria.eq( "id", criteria.convertIDValueToJavaType( arguments.id ) );Last updated
Was this helpful?