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

com.daiyc.extension.adaptive.matcher.ToStringMatcher Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.daiyc.extension.adaptive.matcher;

/**
 * @author daiyc
 * @since 2024/12/18
 */
public class ToStringMatcher implements Matcher {
    @Override
    public String match(Object o) {
        if (o == null) {
            return null;
        }

        return o.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy