Example #1
0
 /// <summary>
 /// Set the component1 from a Number object.
 /// <br>
 /// Parses the Number into a SWIFT amount with truncated zero decimals and mandatory decimal separator.
 /// <ul>
 ///     <li>Example: 1234.00 -&gt; 1234,</li>
 ///     <li>Example: 1234 -&gt; 1234,</li>
 ///     <li>Example: 1234.56 -&gt; 1234,56</li>
 /// </ul> </summary>
 /// <param name="component1"> the Number with the component1 content to set </param>
 public virtual Field19Z setComponent1(java.lang.Number component1)
 {
     setComponent(1, SwiftFormatUtils.getNumber(component1));
     return(this);
 }
Example #2
0
 /// <summary>
 /// Creates the field object from a number value </summary>
 /// <param name="number"> the number value </param>
 public Field19(Number number) : this(SwiftFormatUtils.getNumber(number))
 {
 }
Example #3
0
 public virtual Field19A setComponent4(java.lang.Number component4)
 {
     setComponent(4, SwiftFormatUtils.getNumber(component4));
     return(this);
 }
Example #4
0
 public virtual Field19B setComponent3(java.lang.Number component3)
 {
     setComponent(3, SwiftFormatUtils.getNumber(component3));
     return(this);
 }
Example #5
0
 public virtual Field19C setComponent2(java.lang.Number component2)
 {
     setComponent(2, SwiftFormatUtils.getNumber(component2));
     return(this);
 }