/** * Returns a list that consists of the available ADDE datasets for a given {@link EntryType}, * converted to IDV {@link AddeServer} objects. * * @param type Only add entries with this type to the returned list. Cannot be {@code null}. * @return {@code AddeServer} objects for each ADDE entry of the given type. */ public Set<AddeServer> getIdvStyleEntries(final EntryType type) { return EntryTransforms.convertMcvServers(getVerifiedEntries(type)); }
/** * Returns a list of all available ADDE datasets, converted to IDV {@link AddeServer} objects. * * @return List of {@code AddeServer} objects for each ADDE entry. */ public List<AddeServer> getIdvStyleEntries() { return arrList(EntryTransforms.convertMcvServers(getEntrySet())); }