blob: 5251bde528366b78211373d525a9b35de2cb4404 [file] [log] [blame]
Akronda080152020-12-03 13:53:29 +01001package de.ids_mannheim.korap.constant;
2
margaretha652c4dc2021-02-12 17:07:44 +01003import org.apache.commons.lang.StringUtils;
4
Akronda080152020-12-03 13:53:29 +01005public enum QueryType {
6
margaretha35e1ca22023-11-16 22:00:01 +01007 QUERY, VIRTUAL_CORPUS;
8
margaretha652c4dc2021-02-12 17:07:44 +01009 public String displayName () {
10 return StringUtils.capitalize(name().toLowerCase().replace("_", " "));
11 }
Akronda080152020-12-03 13:53:29 +010012}