class HostStr extends java.lang.Object implements IExtVisitorHost<java.lang.String,HostStr>
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
s |
private static long |
serialVersionUID |
| Constructor and Description |
|---|
HostStr(java.lang.String s) |
| Modifier and Type | Method and Description |
|---|---|
<R,P> R |
execute(IExtVisitor<R,java.lang.String,P,? extends HostStr> algo,
P... params)
The method that executes (accepts) the extended visitor to process this host.
|
private static final long serialVersionUID
private java.lang.String s
public <R,P> R execute(IExtVisitor<R,java.lang.String,P,? extends HostStr> algo, P... params)
IExtVisitorHostexecute in interface IExtVisitorHost<java.lang.String,HostStr>R - The return type of the visitor.P - The type of the input parameters of the visitor.algo - The extended visitor to execute.params - Vararg input parameters to the visitor.