io.gsonfire.postprocessors.methodinvoker.MappedMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gson-fire Show documentation
Show all versions of gson-fire Show documentation
A java library that adds some very useful features to Gson, like Date serializing to unix timestamp or RFC3339, method (getter) serialization, pre and post processors and many more. Check out the documentation to learn how to use it!
package io.gsonfire.postprocessors.methodinvoker;
import io.gsonfire.annotations.ExposeMethodResult;
import java.lang.reflect.Method;
/**
* Created by julio on 5/25/15.
*/
public final class MappedMethod {
private final Method method;
private final String serializedName;
private final ExposeMethodResult.ConflictResolutionStrategy conflictResolutionStrategy;
public Method getMethod() {
return method;
}
public String getSerializedName() {
return serializedName;
}
public ExposeMethodResult.ConflictResolutionStrategy getConflictResolutionStrategy() {
return conflictResolutionStrategy;
}
public MappedMethod(Method method, String serializedName, ExposeMethodResult.ConflictResolutionStrategy conflictResolutionStrategy) {
this.method = method;
this.serializedName = serializedName;
this.conflictResolutionStrategy = conflictResolutionStrategy;
}
}