package eu.dnetlib.data.mapreduce.hbase;

public enum VolatileColumnFamily {

	dedup, dedupPerson; // instance is here to remove the old protos

	public static boolean isVolatile(final String columnName) {
		try {
			return VolatileColumnFamily.valueOf(columnName) != null;
		} catch (final Throwable e) {
			return false;
		}
	}
}
