uk.ac.starlink.pds4.DelimitedTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stil Show documentation
Show all versions of stil Show documentation
Starlink Tables Infrastructure Library
package uk.ac.starlink.pds4;
/**
* Table subinterface for PDS4 Table_Delimited objects.
*
* @author Mark Taylor
* @since 24 Nov 2021
*/
public interface DelimitedTable extends Table {
/**
* Returns the field delimiter character.
*
* @return field delimiter character
*/
char getFieldDelimiter();
}