This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Available context bindings: | |
* COLUMNS List<DataColumn> | |
* ROWS Iterable<DataRow> | |
* OUT { append() } | |
* FORMATTER { format(row, col); formatValue(Object, col) } | |
* TRANSPOSED Boolean | |
* plus ALL_COLUMNS, TABLE, DIALECT | |
* | |
* where: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class MimeTypes | |
{ | |
public static final class Application | |
{ | |
public static final String ATOM_XML = "application/atom+xml"; | |
public static final String ATOMCAT_XML = "application/atomcat+xml"; | |
public static final String ECMASCRIPT = "application/ecmascript"; | |
public static final String JAVA_ARCHIVE = "application/java-archive"; | |
public static final String JAVASCRIPT = "application/javascript"; | |
public static final String JSON = "application/json"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class MimeTypes | |
{ | |
public static class Application | |
{ | |
public const string AtomXml = "application/atom+xml"; | |
public const string AtomcatXml = "application/atomcat+xml"; | |
public const string Ecmascript = "application/ecmascript"; | |
public const string JavaArchive = "application/java-archive"; | |
public const string Javascript = "application/javascript"; | |
public const string Json = "application/json"; |