mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-18 06:21:19 +00:00
11 lines
309 B
Java
11 lines
309 B
Java
package com.fasterxml.jackson.databind.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Target({ElementType.ANNOTATION_TYPE, ElementType.TYPE})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface JsonPOJOBuilder {
|
|
public String buildMethodName() default "build";
|
|
public String withPrefix() default "with";
|
|
}
|