Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Gephi パッケージ内で Jython を使用しています。特定のクラス (Java から) が実装しているインターフェイスのリストが必要です。Jythonでそれは可能ですか?
ありがとう!
Javaで行うのと同じ方法です。
たとえば、ArrayList によって実装されたインターフェイスの名前を一覧表示するには、次のようにします。
from java.util import ArrayList for interface in ArrayList.getInterfaces(): print interface.getName()