Skip to content

Instantly share code, notes, and snippets.

@spericas
Created June 22, 2020 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spericas/81773daf92e6eb20d5dd59e87d302921 to your computer and use it in GitHub Desktop.
Save spericas/81773daf92e6eb20d5dd59e87d302921 to your computer and use it in GitHub Desktop.
public class UppercaseEncoder implements Encoder.Text<String> {
@Override
public String encode(String s) {
return s.toUpperCase();
}
@Override
public void init(EndpointConfig config) {
}
@Override
public void destroy() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment