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

com.cedarsoft.utils.DefaultRenderer Maven / Gradle / Ivy

The newest version!
package com.cedarsoft.utils;

import org.jetbrains.annotations.NotNull;

/**
 * Default implementation of {@link Renderer} that simply returns
 * {@link String#valueOf(Object)}.
 */
public class DefaultRenderer implements Renderer {
  @NotNull
  public String render( @NotNull Object object, Object context ) {
    return String.valueOf( object );
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy