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

dev.struchkov.haiti.utils.fieldconstants.domain.mode.simple.SimpleFieldDto Maven / Gradle / Ivy

The newest version!
package dev.struchkov.haiti.utils.fieldconstants.domain.mode.simple;

/**
 * // TODO: 07.06.2021 Добавить описание.
 *
 * @author upagge 07.06.2021
 */
public class SimpleFieldDto {

    private final String fieldName;

    private SimpleFieldDto(String fieldName) {
        this.fieldName = fieldName;
    }

    public static SimpleFieldDto of(String fieldName) {
        return new SimpleFieldDto(fieldName);
    }

    public String getFieldName() {
        return fieldName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy