public interface

Function

com.atlassian.plugin.util.collect.Function<I, O>
Known Indirect Subclasses

Class Overview

A Function that resolves input (of type I) to output (of type O).

Semantically, this could be a Factory, Generator, Builder, Closure, Transformer, Resolver or something else entirely. No particular guarantees are implied by this interface apart from idempotence (see below). Specifically, implementations may or may not return or accept null and can optionally block until elements are available or throw runtime exceptions if the input is not acceptable for some reason. Any clients that require a firmer contract should subclass this interface and document their requirements.

It is expected that for any two calls to get(Object) D the returned resource will be semantically the same, ie. that the call is effectively idempotent. Any implementation that violates this should document the fact. It is not necessary that the resolved object is the same instance or even implements #equals(Object) and #hashCode() however.

As this interface requires idempotence implementations should be reentrant and thread-safe.

Summary

Public Methods
O get(I input)
Resolves an output where an input is given.

Public Methods

public O get (I input)

Resolves an output where an input is given.

Parameters
input an object of type D.
Returns
  • the output of type R.