Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for includeNull (0.04 sec)

  1. README.md

    ```
    
    ### Bean Copy Configuration
    ```java
    // Configure bean copying behavior
    CopyOptions options = new CopyOptions()
        .exclude("password", "internalId")      // Exclude specific fields
        .includeNull(false)                     // Skip null values
        .converter("dateField", new DateConverter("yyyy-MM-dd"));
    
    BeanUtil.copyBeanToBean(source, dest, options);
    ```
    
    ## 🤝 Contributing
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top