All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squarespace.cldrengine.decimal.StringDecimalFormatter Maven / Gradle / Ivy

The newest version!
package com.squarespace.cldrengine.decimal;

import java.util.ArrayList;
import java.util.List;
import java.util.ListIterator;

public class StringDecimalFormatter implements DecimalFormatter {

  private List parts = new ArrayList<>();

  public void add(String c) {
    this.parts.add(c);
  }

  public String render() {
    StringBuilder buf = new StringBuilder();
    ListIterator iter = this.parts.listIterator(this.parts.size());
    while (iter.hasPrevious()) {
      buf.append(iter.previous());
    }
    return buf.toString();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy