Interface PyObjectAdapter

All Known Implementing Classes:
ClassAdapter, ClassicPyObjectAdapter, ExtensiblePyObjectAdapter

public interface PyObjectAdapter
PyObjectAdapters turn Java Objects into PyObjects.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the PyObject version of o or null if canAdapt(o) returns false.
    boolean
    Returns true if o can be adapted by this adapter.
  • Method Details

    • canAdapt

      boolean canAdapt(Object o)
      Returns true if o can be adapted by this adapter.
    • adapt

      PyObject adapt(Object o)
      Returns the PyObject version of o or null if canAdapt(o) returns false.