Class Fixed

All Implemented Interfaces:
Type<java.math.BigInteger>

public class Fixed
extends FixedPointType
Signed fixed type.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static Fixed DEFAULT  
    static java.lang.String TYPE_NAME  

    Fields inherited from interface org.fisco.bcos.sdk.abi.datatypes.Type

    MAX_BIT_LENGTH, MAX_BYTE_LENGTH
  • Constructor Summary

    Constructors 
    Modifier Constructor Description
    protected Fixed​(int mBitSize, int nBitSize, java.math.BigInteger value)  
    protected Fixed​(int mBitSize, int nBitSize, java.math.BigInteger m, java.math.BigInteger n)  
      Fixed​(java.math.BigInteger value)  
      Fixed​(java.math.BigInteger m, java.math.BigInteger n)  
  • Method Summary

    Modifier and Type Method Description
    boolean dynamicType()  
    int offset()  

    Methods inherited from class org.fisco.bcos.sdk.abi.datatypes.NumericType

    equals, getTypeAsString, getValue, hashCode

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • Fixed

      protected Fixed​(int mBitSize, int nBitSize, java.math.BigInteger value)
    • Fixed

      public Fixed​(java.math.BigInteger value)
    • Fixed

      public Fixed​(java.math.BigInteger m, java.math.BigInteger n)
    • Fixed

      protected Fixed​(int mBitSize, int nBitSize, java.math.BigInteger m, java.math.BigInteger n)
  • Method Details