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

com.ibm.icu.impl.number.ConstantAffixModifier Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html#License
package com.ibm.icu.impl.number;

import com.ibm.icu.text.NumberFormat.Field;

/**
 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string.
 */
public class ConstantAffixModifier implements Modifier {

    // TODO: Avoid making a new instance by default if prefix and suffix are empty
    public static final ConstantAffixModifier EMPTY = new ConstantAffixModifier();

    private final String prefix;
    private final String suffix;
    private final Field field;
    private final boolean strong;

    /**
     * Constructs an instance with the given strings.
     *
     * 

* The arguments need to be Strings, not CharSequences, because Strings are immutable but * CharSequences are not. * * @param prefix * The prefix string. * @param suffix * The suffix string. * @param field * The field type to be associated with this modifier. Can be null. * @param strong * Whether this modifier should be strongly applied. * @see Field */ public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) { // Use an empty string instead of null if we are given null // TODO: Consider returning a null modifier if both prefix and suffix are empty. this.prefix = (prefix == null ? "" : prefix); this.suffix = (suffix == null ? "" : suffix); this.field = field; this.strong = strong; } /** Constructs a new instance with an empty prefix, suffix, and field. */ public ConstantAffixModifier() { prefix = ""; suffix = ""; field = null; strong = false; } @Override public int apply(NumberStringBuilder output, int leftIndex, int rightIndex) { // Insert the suffix first since inserting the prefix will change the rightIndex int length = output.insert(rightIndex, suffix, field); length += output.insert(leftIndex, prefix, field); return length; } @Override public int getPrefixLength() { return prefix.length(); } @Override public int getCodePointCount() { return prefix.codePointCount(0, prefix.length()) + suffix.codePointCount(0, suffix.length()); } @Override public boolean isStrong() { return strong; } @Override public String toString() { return String.format("", prefix, suffix); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy