com.envimate.mapmate.MethodName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapmate Show documentation
Show all versions of mapmate Show documentation
MapMate is a modern mapping framework in the scope of mapping data in
Json, XML, or YAML format into DTOs composed and vice versa.
/*
* Copyright (C) 2017 [Richard Hauswald, Nune Isabekyan] (envimate GmbH - https://envimate.com/)
*/
package com.envimate.mapmate;
public final class MethodName {
private final String value;
private MethodName(final String methodName) {
this.value = methodName;
}
public static MethodName fromString(final String methodName) {
return new MethodName(methodName);
}
public String internalValueForMapping() {
return this.value;
}
}