public interface IAddressFactory2 extends IAddressFactory
Modifier and Type | Method and Description |
---|---|
IAddress |
createAddress(BigInteger addr,
boolean truncate)
|
IAddress |
createAddress(String addr,
boolean truncate)
|
IAddress |
createAddress(String addr,
int radix,
boolean truncate)
|
createAddress, createAddress, createAddress, getMax, getZero
IAddress createAddress(String addr, boolean truncate)
IAddressFactory.createAddress(String)
.
Same contract except that the constructor will throw
a NumberFormatException if the supplied initializer value
is out of range (when 'truncate' is false). IAddressFactory
methods implicitly truncate if the value is out of range.IAddress createAddress(String addr, int radix, boolean truncate)
IAddressFactory.createAddress(String, int)
.
Same contract except that the constructor will throw
a NumberFormatException if the supplied initializer value
is out of range (when 'truncate' is false). IAddressFactory
methods implicitly truncate if the value is out of range.IAddress createAddress(BigInteger addr, boolean truncate)
IAddressFactory.createAddress(BigInteger)
.
Same contract except that the constructor will throw
a NumberFormatException if the supplied initializer value
is out of range (when 'truncate' is false). IAddressFactory
methods implicitly truncate if the value is out of range.Copyright (c) IBM Corp. and others 2004, 2020. All Rights Reserved.