Class BICResolver
- java.lang.Object
-
- com.prowidesoftware.swift.model.field.BICResolver
-
public class BICResolver extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description BICResolver()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.List<BIC>
bics(Field f)
Returns the list of BIC values (as BIC) given an MT Field If you want a list of Strings, usebicStrings
insteadstatic java.util.List<java.lang.String>
bicStrings(Field f)
Returns the list of BIC values (as String) given an MT Field If you want a list of BIC coes, usebics
instead
-
-
-
Method Detail
-
bicStrings
public static java.util.List<java.lang.String> bicStrings(Field f)
Returns the list of BIC values (as String) given an MT Field If you want a list of BIC coes, usebics
instead- Parameters:
f
- the field- Returns:
- the list of BICs
- See Also:
bics(Field)
-
bics
public static java.util.List<BIC> bics(Field f)
Returns the list of BIC values (as BIC) given an MT Field If you want a list of Strings, usebicStrings
instead- Parameters:
f
- the field- Returns:
- the list of currencies
- See Also:
bicStrings(Field)
-
-