| java.lang.Object | |
| ↳ | net.schmizz.sshj.common.Factory.Named.Util |
Utility functions
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates an object by picking a factory from
factories that is identified by name from a
list of named factories. | |||||||||||
Retrieve a particular factory as identified by
name from a list of named factories. | |||||||||||
Get a comma-delimited string containing the factory names from the given list of
factories. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Creates an object by picking a factory from factories that is identified by name from a
list of named factories. Uses the first match.
| factories | List of available factories |
|---|---|
| name | Name of the desired factory |
T or null if there was no match
Retrieve a particular factory as identified by name from a list of named factories.
Returns the first match.
| factories | List of factories |
|---|---|
| name | The name of the factory to retrieve |
null if there was no match
Get a comma-delimited string containing the factory names from the given list of factories.
| factories | List of available factories |
|---|