Class JCORefOut<T>
- java.lang.Object
-
- org.mases.jcobridge.netreflection.JCORefOut<T>
-
public class JCORefOut<T> extends java.lang.ObjectWrapper 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 newJCORefOutusing the Object.static <T> JCORefOut<T>Create(T[] refObj)Initialize a newJCORefOutusing the Object.java.lang.ObjectgetJCRefOut()Returns an instance ofJCRefOutto be passed to the underlying layer
-
-
-
Method Detail
-
Create
public static <T> JCORefOut<T> Create(T refObj)
Initialize a newJCORefOutusing 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 newJCORefOutusing 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
-
-