public interface Resolver<I,O> extends Function<I,O>
Semantically, this could be a Factory, Generator, Builder, Closure, Transformer, Decorator or something else entirely. No guarantees are implied by this interface. Specifically, input and output objects may or may not be nullable, runtime exceptions may or may not be thrown and the method may or may not block.
Modifier and Type | Method and Description |
---|---|
O |
get(I input)
Resolve an instance of the output type from an object of the input type.
|
Copyright © 2002-2018 Atlassian. All Rights Reserved.