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

com.buschmais.xo.impl.proxy.repository.object.ToStringMethod Maven / Gradle / Ivy

The newest version!
package com.buschmais.xo.impl.proxy.repository.object;

import com.buschmais.xo.api.proxy.ProxyMethod;

import static java.util.Arrays.asList;

public class ToStringMethod implements ProxyMethod {

    @Override
    public Object invoke(T delegate, Object instance, Object[] args) {
        return asList(instance.getClass()
            .getInterfaces()) + "(" + delegate.toString() + ")";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy