View Javadoc

1   package com.sharkysoft.printf;
2   
3   import java.math.BigInteger;
4   
5   final class Formatter_z_Bi extends Formatter_z
6   {
7   
8     Formatter_z_Bi(final FormatSpecifier ipPfs)
9     {
10      super(ipPfs);
11    }
12    
13    void format(final PrintfState ipPs)
14    {
15      formatUnsignedBigInteger(ipPs);
16    }
17  
18      Class[] argTypes() {
19          Class[] types = super.argTypes();
20          types[0] = BigInteger.class;
21          return types;
22      }
23  
24  }
25