org.springframework.format.number.PercentStyleFormatter Java Examples
The following examples show how to use
org.springframework.format.number.PercentStyleFormatter.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Jsr354NumberFormatAnnotationFormatterFactory.java From spring-analysis-note with MIT License | 6 votes |
private Formatter<MonetaryAmount> configureFormatterFrom(NumberFormat annotation) { String pattern = resolveEmbeddedValue(annotation.pattern()); if (StringUtils.hasLength(pattern)) { return new PatternDecoratingFormatter(pattern); } else { Style style = annotation.style(); if (style == Style.NUMBER) { return new NumberDecoratingFormatter(new NumberStyleFormatter()); } else if (style == Style.PERCENT) { return new NumberDecoratingFormatter(new PercentStyleFormatter()); } else { return new NumberDecoratingFormatter(new CurrencyStyleFormatter()); } } }
Example #2
Source File: Jsr354NumberFormatAnnotationFormatterFactory.java From java-technology-stack with MIT License | 6 votes |
private Formatter<MonetaryAmount> configureFormatterFrom(NumberFormat annotation) { String pattern = resolveEmbeddedValue(annotation.pattern()); if (StringUtils.hasLength(pattern)) { return new PatternDecoratingFormatter(pattern); } else { Style style = annotation.style(); if (style == Style.NUMBER) { return new NumberDecoratingFormatter(new NumberStyleFormatter()); } else if (style == Style.PERCENT) { return new NumberDecoratingFormatter(new PercentStyleFormatter()); } else { return new NumberDecoratingFormatter(new CurrencyStyleFormatter()); } } }
Example #3
Source File: Jsr354NumberFormatAnnotationFormatterFactory.java From lams with GNU General Public License v2.0 | 6 votes |
private Formatter<MonetaryAmount> configureFormatterFrom(NumberFormat annotation) { if (StringUtils.hasLength(annotation.pattern())) { return new PatternDecoratingFormatter(resolveEmbeddedValue(annotation.pattern())); } else { Style style = annotation.style(); if (style == Style.NUMBER) { return new NumberDecoratingFormatter(new NumberStyleFormatter()); } else if (style == Style.PERCENT) { return new NumberDecoratingFormatter(new PercentStyleFormatter()); } else { return new NumberDecoratingFormatter(new CurrencyStyleFormatter()); } } }
Example #4
Source File: Jsr354NumberFormatAnnotationFormatterFactory.java From spring4-understanding with Apache License 2.0 | 6 votes |
private Formatter<MonetaryAmount> configureFormatterFrom(NumberFormat annotation) { if (StringUtils.hasLength(annotation.pattern())) { return new PatternDecoratingFormatter(resolveEmbeddedValue(annotation.pattern())); } else { Style style = annotation.style(); if (style == Style.NUMBER) { return new NumberDecoratingFormatter(new NumberStyleFormatter()); } else if (style == Style.PERCENT) { return new NumberDecoratingFormatter(new PercentStyleFormatter()); } else { return new NumberDecoratingFormatter(new CurrencyStyleFormatter()); } } }
Example #5
Source File: EvalTagTests.java From spring-analysis-note with MIT License | 5 votes |
@Test public void printFormattedScopedAttributeResult() throws Exception { PercentStyleFormatter formatter = new PercentStyleFormatter(); tag.setExpression("bean.formattable"); int action = tag.doStartTag(); assertEquals(Tag.EVAL_BODY_INCLUDE, action); action = tag.doEndTag(); assertEquals(Tag.EVAL_PAGE, action); assertEquals(formatter.print(new BigDecimal(".25"), Locale.getDefault()), ((MockHttpServletResponse) context.getResponse()).getContentAsString()); }
Example #6
Source File: EvalTagTests.java From java-technology-stack with MIT License | 5 votes |
@Test public void printFormattedScopedAttributeResult() throws Exception { PercentStyleFormatter formatter = new PercentStyleFormatter(); tag.setExpression("bean.formattable"); int action = tag.doStartTag(); assertEquals(Tag.EVAL_BODY_INCLUDE, action); action = tag.doEndTag(); assertEquals(Tag.EVAL_PAGE, action); assertEquals(formatter.print(new BigDecimal(".25"), Locale.getDefault()), ((MockHttpServletResponse) context.getResponse()).getContentAsString()); }
Example #7
Source File: EvalTagTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
@Test public void printFormattedScopedAttributeResult() throws Exception { PercentStyleFormatter formatter = new PercentStyleFormatter(); tag.setExpression("bean.formattable"); int action = tag.doStartTag(); assertEquals(Tag.EVAL_BODY_INCLUDE, action); action = tag.doEndTag(); assertEquals(Tag.EVAL_PAGE, action); assertEquals(formatter.print(new BigDecimal(".25"), Locale.getDefault()), ((MockHttpServletResponse) context.getResponse()).getContentAsString()); }