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

com.xzchaoo.commons.basic.config.bind.ComplexObject Maven / Gradle / Ivy

There is a newer version: 1.12.1
Show newest version
package com.xzchaoo.commons.basic.config.bind;

import lombok.Data;

/**
 * @author xzchaoo
 * 

created at 2021/12/18 */ @Data public class ComplexObject { private int value; public static ComplexObject ofValue(String str) { ComplexObject o = new ComplexObject(); o.value = Integer.parseInt(str); return o; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy