Package com.dylibso.chicory.wasm.types
Class Import
- java.lang.Object
-
- com.dylibso.chicory.wasm.types.Import
-
- Direct Known Subclasses:
FunctionImport,GlobalImport,MemoryImport,TableImport
public abstract class Import extends Object
Some imported entity.See Imports for reference.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(Import other)booleanequals(Object obj)inthashCode()abstract ExternalTypeimportType(){@return the kind of imported definition}StringmoduleName(){@return the module name to import from}Stringname(){@return the import name}StringtoString()StringBuildertoString(StringBuilder b)
-
-
-
Method Detail
-
moduleName
public String moduleName()
{@return the module name to import from}
-
name
public String name()
{@return the import name}
-
importType
public abstract ExternalType importType()
{@return the kind of imported definition}
-
equals
public boolean equals(Import other)
-
toString
public StringBuilder toString(StringBuilder b)
-
-