tech.ydb.yoj.databind.schema.naming.DelegateNamingStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoj-databind Show documentation
Show all versions of yoj-databind Show documentation
Core data-binding logic used by YOJ (YDB ORM for Java) to convert
between Java objects and database rows (or anything representable by
a Java Map, really).
The newest version!
package tech.ydb.yoj.databind.schema.naming;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.experimental.Delegate;
@AllArgsConstructor
@EqualsAndHashCode
public class DelegateNamingStrategy implements NamingStrategy {
@Delegate
protected final NamingStrategy delegate;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy