> For the complete documentation index, see [llms.txt](https://coldbox-orm.ortusbooks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://coldbox-orm.ortusbooks.com/v2.x-2/criteria-queries/coldbox-criteria-builder/restrictions/converting-values-to-java-types.md).

# Value Casting

We have created several methods available to you in the criteria builders to help you with casting ColdFusion values to Java values so you can use them in Criteria Queries.  Most of the time the engines can do this for us but not always, so we would recommend to just use these convenience methods when needed. &#x20;

{% hint style="info" %}
Please note that the base services also include these methods with a few differences in arguments.  Just check the API Docs for their usage.
{% endhint %}

### `BaseBuilder` Casting Methods

### `nullValue()`

Produce a null value that can be used anywhere you like!

### `autoCast( propertyName, value )`

This method allows you to cast any value to the appropriate type in Java for the property passed in.

### `idCast( id )`

This method allows you to cast the identifier value to the appropriate type in Java.

### Example

So instead of casting it manually you can just let us do the work by calling these methods from any of the services.

```javascript
c.eq( "id", c.idCast( arguments.id ) )
    .eq( "timeout", c.autoCast( "timeout", 4000 ) )
    .eq( "lastLogin", nullValue() );
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://coldbox-orm.ortusbooks.com/v2.x-2/criteria-queries/coldbox-criteria-builder/restrictions/converting-values-to-java-types.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
