gravitino.api.types.type.IntegralType

class gravitino.api.types.type.IntegralType(signed: bool)

Bases: NumericType, ABC

Base class for all integral types.

__init__(signed: bool)

Methods

__init__(signed)

name()

Returns the generic name of the type.

signed()

Returns True if the integer type is signed, False otherwise.

simple_string()

Returns a readable string representation of the type.

abstract name() Name

Returns the generic name of the type.

signed() bool

Returns True if the integer type is signed, False otherwise.

abstract simple_string() str

Returns a readable string representation of the type.