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

com.tngtech.jgiven.examples.datatable.format.ToUpperCaseFormatter Maven / Gradle / Ivy

package com.tngtech.jgiven.examples.datatable.format;

import com.tngtech.jgiven.format.ArgumentFormatter;

public class ToUpperCaseFormatter implements ArgumentFormatter {
    @Override
    public String format( String value, String... args ) {
        if( value == null ) {
            return "";
        }

        return value.toUpperCase();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy