Interface Ref<T>

All Known Implementing Classes:
BooleanRef, DefaultRef, IntRef

public interface Ref<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
     
    static IntRef
    of(int value)
     
    static <T> Ref<T>
    of(T value)
     
    void
    set(T t)
     
  • Method Details

    • of

      static IntRef of(int value)
    • of

      static <T> Ref<T> of(T value)
    • get

      T get()
    • set

      void set(T t)