org.rcsb.mmtf.arraycompressors.StringArrayCompressor Maven / Gradle / Ivy
package org.rcsb.mmtf.arraycompressors;
import java.util.ArrayList;
/**
* The Interface StringArrayCompressor.
*/
public interface StringArrayCompressor {
/**
* Generic function to compress a string array.
*
* @param inArray the in array
* @return the array list
*/
ArrayList compressStringArray(ArrayList inArray);
}