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

com.github.robindevilliers.cascade.modules.reporter.StringStateRendering Maven / Gradle / Ivy

The newest version!
package com.github.robindevilliers.cascade.modules.reporter;

public class StringStateRendering implements StateRenderingStrategy {

    @Override
    public boolean accept(Object value) {
        return value instanceof String;
    }

    @Override
    public String render(Object value) {
        return value.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy