Package org.hcjf.utils
Class Introspection.InvokerEntry<I extends Introspection.Invoker>
- java.lang.Object
-
- org.hcjf.utils.Introspection.InvokerEntry<I>
-
- Type Parameters:
I- Invoker type.
- Enclosing class:
- Introspection
public static class Introspection.InvokerEntry<I extends Introspection.Invoker> extends java.lang.ObjectThis class represents the object returned by the invoker filter.
-
-
Constructor Summary
Constructors Constructor Description InvokerEntry(java.lang.String key, I invoker, java.lang.String... aliases)
-
Method Summary
Modifier and Type Method Description java.lang.String[]getAliases()Return the aliases array.IgetInvoker()Return the value of the entry.java.lang.StringgetKey()Return the key of the entry.
-
-
-
Constructor Detail
-
InvokerEntry
public InvokerEntry(java.lang.String key, I invoker, java.lang.String... aliases)
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Return the key of the entry.- Returns:
- Key of the entry.
-
getInvoker
public I getInvoker()
Return the value of the entry.- Returns:
- Value of the entry.
-
getAliases
public java.lang.String[] getAliases()
Return the aliases array.- Returns:
- Aliases array.
-
-