All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jparams.object.builder.BuildStrategy Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
package com.jparams.object.builder;

/**
 * Build strategy
 */
public enum BuildStrategy
{
    /**
     * Build an instance of an class using the best possible constructor
     */
    CONSTRUCTOR,

    /**
     * Build an instance of a class using field injection. This will bypass any validation logic in the constructor.
     */
    FIELD_INJECTION,

    /**
     * An attempt will be made to build the object by invoking the constructor, if that fails, field injection will be used as a fallback
     */
    AUTO
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy