List of usage examples for java.util Collections emptyNavigableSet
@SuppressWarnings("unchecked") public static <E> NavigableSet<E> emptyNavigableSet()
From source file:com.ejisto.modules.dao.local.LocalMockedFieldsDao.java
@Override public Collection<MockedField> loadContextPathFields(String contextPath) { return getDatabase().getMockedFields(contextPath).orElse(Collections.emptyNavigableSet()).stream() .map(MockedFieldContainer::getMockedField).collect(Collectors.toList()); }
From source file:com.ejisto.modules.dao.local.LocalMockedFieldsDao.java
private NavigableSet<MockedFieldContainer> getMockedFieldsByContextPath(String contextPath) { return getDatabase().getMockedFields(contextPath).orElse(Collections.emptyNavigableSet()); }