Home
last modified time | relevance | path

Searched refs:positiveSign (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/format/
DDecimalStyle.java104 private final char positiveSign; field in DecimalStyle
168 char positiveSign = '+'; in create() local
174 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in create()
188 this.positiveSign = positiveSignChar; in DecimalStyle()
220 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in withZeroDigit()
233 return positiveSign; in getPositiveSign()
245 public DecimalStyle withPositiveSign(char positiveSign) { in withPositiveSign() argument
246 if (positiveSign == this.positiveSign) { in withPositiveSign()
249 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in withPositiveSign()
278 return new DecimalStyle(zeroDigit, positiveSign, negativeSign, decimalSeparator); in withNegativeSign()
[all …]