![JAR search and dependency download from the Maven repository](/logo.png)
panda.bind.adapter.AbstractSerializeAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
package panda.bind.adapter;
import panda.bind.SerializeAdapter;
public class AbstractSerializeAdapter implements SerializeAdapter {
/**
* {@inheritDoc}
*/
@Override
public Object adaptSource(T src) {
return src;
}
/**
* {@inheritDoc}
*/
@Override
public String adaptPropertyName(T src, String name) {
return name;
}
/**
* {@inheritDoc}
*/
@Override
public Object adaptPropertyValue(T src, Object value) {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy