Interface ValueReadHandle<T>

Type Parameters:
T - The value type.

public interface ValueReadHandle<T>
A handle giving read access to a value from an object instance: field, no-argument method, ...
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    get(Object thiz)
     
    int
     
  • Method Details

    • get

      T get(Object thiz)
    • equals

      boolean equals(Object obj)
      Overrides:
      equals in class Object
      Returns:
      true if obj is a ValueReadHandle referencing the exact same value accessor: same API (java.lang.invoke or java.lang.reflect), same element (same field or method), ...
    • hashCode

      int hashCode()
      Overrides:
      hashCode in class Object