public class InvocationStream extends Object
| コンストラクタと説明 |
|---|
InvocationStream(Object object) |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
Object |
get() |
InvocationStream |
invoke(String methodName,
Object... args) |
<T> T |
invokeAndGet(String methodName,
Object... args) |
int |
invokeAndGetInt(String methodName,
Object... args) |
long |
invokeAndGetLong(String methodName,
Object... args) |
static InvocationStream |
of(Object object) |
public InvocationStream(Object object)
public static InvocationStream of(Object object)
public Object get()
public InvocationStream invoke(String methodName, Object... args) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException
public <T> T invokeAndGet(String methodName, Object... args) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException
public int invokeAndGetInt(String methodName, Object... args) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException
public long invokeAndGetLong(String methodName, Object... args) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException
Copyright © 2018. All rights reserved.