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

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

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

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

public class HashCodeMethod implements ProxyMethod {

    @Override
    public Object invoke(T delegate, Object instance, Object[] args) {
        return delegate.hashCode();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy