Class Reference<T>

java.lang.Object
org.irods.irods4j.common.Reference<T>
Type Parameters:
T - The type of the wrapped object.

public class Reference<T> extends Object
A generic class which holds a reference to a specific object. The class is designed for use with the low-level iRODS API functions.
Since:
0.1.0
  • Field Details

    • value

      public T value
  • Constructor Details

    • Reference

      public Reference()
      Initializes a newly created reference holding no value.
      Since:
      0.1.0
    • Reference

      public Reference(T object)
      Initializes a newly created reference with a value.
      Parameters:
      object - The object to reference.
      Since:
      0.1.0