- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getTypePrefix (0.16 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
} final String configType = configId.substring(0, 1); if (ConfigType.WEB.getTypePrefix().equals(configType)) { return ConfigType.WEB; } if (ConfigType.FILE.getTypePrefix().equals(configType)) { return ConfigType.FILE; } if (ConfigType.DATA.getTypePrefix().equals(configType)) { return ConfigType.DATA; } return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java
WEB("W"), FILE("F"), DATA("D"); private final String typePrefix; ConfigType(final String typePrefix) { this.typePrefix = typePrefix; } public String getTypePrefix() { return typePrefix; } String getConfigId(final String id) { if (id == null) { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0)