Class Ufixed

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

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

    Fields 
    Modifier and Type Field Description
    static Ufixed 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 Ufixed​(int mBitSize, int nBitSize, java.math.BigInteger value)  
    protected Ufixed​(int mBitSize, int nBitSize, java.math.BigInteger m, java.math.BigInteger n)  
      Ufixed​(java.math.BigInteger value)  
      Ufixed​(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

    • Ufixed

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

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

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

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