
com.aitusoftware.proxygen.message.MessageClassnames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxygen Show documentation
Show all versions of proxygen Show documentation
Proxy generator for transport
The newest version!
package com.aitusoftware.proxygen.message;
import com.aitusoftware.proxygen.common.Constants;
public enum MessageClassnames
{
INSTANCE;
public static String toBuilder(final String interfaceName)
{
return interfaceName + Constants.MESSAGE_BUILDER_SUFFIX;
}
public static String toFlyweight(final String interfaceName)
{
return interfaceName + Constants.MESSAGE_FLYWEIGHT_SUFFIX;
}
public static String toSerialiser(final String interfaceName)
{
return interfaceName + Constants.MESSAGE_SERIALISER_SUFFIX;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy