Searched refs:positiveSign (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/time/format/ |
D | DecimalStyle.java | 104 private final char positiveSign; field in DecimalStyle 173 char positiveSign = '+'; in create() local 179 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in create() 193 this.positiveSign = positiveSignChar; in DecimalStyle() 224 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in withZeroDigit() 237 return positiveSign; in getPositiveSign() 249 public DecimalStyle withPositiveSign(char positiveSign) { in withPositiveSign() argument 250 if (positiveSign == this.positiveSign) { in withPositiveSign() 253 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in withPositiveSign() 282 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in withNegativeSign() [all …]
|