Class DefaultColumnToMethodMatchingStrategy

java.lang.Object
com.clickhouse.client.api.metadata.DefaultColumnToMethodMatchingStrategy
All Implemented Interfaces:
ColumnToMethodMatchingStrategy

public class DefaultColumnToMethodMatchingStrategy extends Object implements ColumnToMethodMatchingStrategy
Default implementation of ColumnToMethodMatchingStrategy takes the following rules:
  • Method name is normalized by removing prefixes like "get", "set", "is", "has".
  • Column name is normalized by removing special characters like "-", "_", ".".
  • Normalized method name and column name are compared case-insensitively.