Injection report on live hover over @Bean

This commit is contained in:
Kris De Volder
2017-10-30 15:36:00 -07:00
parent 23253e3227
commit 3e6de74351
12 changed files with 650 additions and 91 deletions

View File

@@ -0,0 +1,29 @@
/*******************************************************************************
* Copyright (c) 2017 Pivotal, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Pivotal, Inc. - initial API and implementation
*******************************************************************************/
package org.springframework.ide.vscode.commons.util;
import java.util.Optional;
import com.google.common.base.Supplier;
public class Optionals {
@SafeVarargs
public static <T> Optional<T> tryInOrder(Supplier<Optional<T>>... optionals) {
for (Supplier<Optional<T>> supplier : optionals) {
Optional<T> opt = supplier.get();
if (opt.isPresent()) {
return opt;
}
}
return Optional.empty();
}
}