
org.sfm.reflect.meta.IndexedColumn Maven / Gradle / Ivy
package org.sfm.reflect.meta;
public class IndexedColumn {
private final int indexValue;
private final PropertyNameMatcher subPropertyNameMatcher;
public IndexedColumn(int indexValue, PropertyNameMatcher subPropertyNameMatcher) {
this.indexValue = indexValue;
this.subPropertyNameMatcher = subPropertyNameMatcher;
}
public int getIndexValue() {
return indexValue;
}
public PropertyNameMatcher getSubPropertyNameMatcher() {
return subPropertyNameMatcher;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy