> ## Documentation Index
> Fetch the complete documentation index at: https://cdktn.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Java: LazyListValueOptions

> CDKTN Core API Reference for LazyListValueOptions in Java.

Options for creating a lazy list token.

## Initializer <a name="Initializer" id="cdktn.LazyListValueOptions.Initializer" />

```java theme={null}
import io.cdktn.cdktn.LazyListValueOptions;

LazyListValueOptions.builder()
//  .displayHint(java.lang.String)
//  .omitEmpty(java.lang.Boolean)
    .build();
```

## Properties <a name="Properties" id="Properties" />

| **Name**                                                                                | **Type**                       | **Description**                                            |
| --------------------------------------------------------------------------------------- | ------------------------------ | ---------------------------------------------------------- |
| <code><a href="#cdktn.LazyListValueOptions.property.displayHint">displayHint</a></code> | <code>java.lang.String</code>  | Use the given name as a display hint.                      |
| <code><a href="#cdktn.LazyListValueOptions.property.omitEmpty">omitEmpty</a></code>     | <code>java.lang.Boolean</code> | If the produced list is empty, return 'undefined' instead. |

***

### `displayHint`<sup>Optional</sup> <a name="displayHint" id="cdktn.LazyListValueOptions.property.displayHint" />

```java theme={null}
public java.lang.String getDisplayHint();
```

* *Type:* java.lang.String
* *Default:* No hint

Use the given name as a display hint.

***

### `omitEmpty`<sup>Optional</sup> <a name="omitEmpty" id="cdktn.LazyListValueOptions.property.omitEmpty" />

```java theme={null}
public java.lang.Boolean getOmitEmpty();
```

* *Type:* java.lang.Boolean
* *Default:* false

If the produced list is empty, return 'undefined' instead.

***
