org.csveed.common.ColumnKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of csveed Show documentation
Show all versions of csveed Show documentation
Java toolkit for mapping CSV-to-Bean mapping and vice versa. Redirection to Introduction in 5 seconds!
package org.csveed.common;
public abstract class ColumnKey implements Comparable {
public abstract Integer getPriority();
public boolean sameKeyType(ColumnKey columnKey) {
return getPriority().equals(columnKey.getPriority());
}
public int keyTypeCompare(ColumnKey columnKey) {
return getPriority().compareTo(columnKey.getPriority());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy