Class JCORefOut<T>
- java.lang.Object
-
- org.mases.jcobridge.netreflection.JCORefOut<T>
-
public class JCORefOut<T> extends java.lang.Object
Wrapper class aroundJCRefOut
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> JCORefOut<T>
Create(T refObj)
Initialize a newJCORefOut
using the Object.static <T> JCORefOut<T>
Create(T[] refObj)
Initialize a newJCORefOut
using the Object.java.lang.Object
getJCRefOut()
Returns an instance ofJCRefOut
to be passed to the underlying layer
-
-
-
Method Detail
-
Create
public static <T> JCORefOut<T> Create(T refObj)
Initialize a newJCORefOut
using the Object.- Type Parameters:
T
- Type to use- Parameters:
refObj
- The referenced object: it can be native array (byte[], int[], and so on),AtomicReference
,AtomicBoolean
,AtomicInteger
,AtomicLong
,AtomicIntegerArray
,AtomicLongArray
- Returns:
- the new
JCORefOut
-
Create
public static <T> JCORefOut<T> Create(T[] refObj)
Initialize a newJCORefOut
using the Object.- Type Parameters:
T
- Type to use- Parameters:
refObj
- The referenced object: it can be native array (byte[], int[], and so on),AtomicReference
,AtomicBoolean
,AtomicInteger
,AtomicLong
,AtomicIntegerArray
,AtomicLongArray
- Returns:
- the new
JCORefOut
-
-