Application Binary Interface
NamedFragment
An abstract class to represent An individual fragment which has a name from a parse ABI.
Extends
Extended by
Properties
Property | Modifier | Type | Description | Inherited from |
---|---|---|---|---|
inputs | readonly | readonly ParamType [] | The inputs for the fragment. | Fragment .inputs |
name | readonly | string | The name of the fragment. | - |
type | readonly | FragmentType | The type of the fragment. | Fragment .type |
Methods
format()
Returns a string representation of this fragment as format
.
Parameters
Parameter | Type |
---|---|
format ? | FormatType |
Returns
string
Inherited from
Source
from()
Creates a new Fragment for obj
, wich can be any supported ABI frgament type.
Parameters
Parameter | Type |
---|---|
obj | any |
Returns
Inherited from
Source
isConstructor()
Returns true if value
is a ConstructorFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is ConstructorFragment
Inherited from
Source
isError()
Returns true if value
is an ErrorFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is ErrorFragment
Inherited from
Source
isEvent()
Returns true if value
is an EventFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is EventFragment
Inherited from
Source
isFunction()
Returns true if value
is a FunctionFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is FunctionFragment
Inherited from
Source
isStruct()
Returns true if value
is a StructFragment.
Parameters
Parameter | Type |
---|---|
value | any |
Returns
value is StructFragment
Inherited from
Source
Was this page helpful?